一、取得工作表資料
- getRange(rowIndex, colIndex, rowNum, colNum).getValues()
列指標:rowIndex
欄指標:colIndex
列數:rowNum
欄數:colNum
- 用「getValues()」取得的資料為二維陣列,外面為每列的資料,裡面為列的儲存格陣列
function ex(){
let sheet = "工作表1";
let ss = SpreadsheetApp.getActiveSpreadsheet();//取得試算表
let ws = ss.getSheetByName(sheet);//取得工作表
let rowIndex = 1;
let colIndex = 1;
let range = ws.getRange(rowIndex,colIndex, 1 ,4);//範圍
let values = range.getValues();
let head = values[0];
console.log(head);
}