0

我有一个使用 Google 电子表格创建的电子表格。是为了出席会议。每个会议都有一个值,所有值加在一起得出一个总数。我想要一个 switch 语句说,

for(i=0;i<columns.length;i++){
  if(cell in each column contains 'X'){
    switch(column[i])
        case 1:
            column[0]=meeting1;
            pointValue=5;
            break;
        case 2:
            column[1]=meeting2;
            pointValue=3;
            break;
  }
// add all the points up and place them next to the name in another spreadsheet

上面的代码都是伪代码。

本质上,我如何“获取”Google Scripting 中的特定单元格?

4

1 回答 1

0

简短的回答是:

var dataRange = sheet.getRange(1, 1, numRows, numCols);
// and later, when you wish to update these cells
dataRange.setValues(newData);

欲了解更多信息,请尝试https://github.com/greenido/AppsScriptBests - 这是一个我试图通过好的示例不断更新的存储库。

于 2014-09-08T13:39:40.697 回答