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 で特定のセルを「取得」するにはどうすればよいですか?