我有一个使用 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 中的特定单元格?