TypeError: Cannot read property 'getsheetByName' of null(行 2、ファイル「コード」)
が出てしまいます。
どうしてでしょうか。
シート名は「ホーム」です。
function myFunction() {
const listSheet = SpreadsheetApp.getActive().getsheetByName("ホーム");
const columuBVals =listSheet.getRange('A:A').getValues();
const lastRow = columuBVals.filter(String).length;
for( i=2; i<=lastRow ; i++){
console.log(iは ${i} です。
)
listSheet.getRange(i,1) = (i-1);
console.log(getRange(i,1)は ${i} です。
)
i++;
console.log(1回目のi++とgetRange(i,2)は ${i} です。
)
listSheet.getRange(i,2) = 0;
i++;
console.log(2回目のi++は ${i} です。
)
}
}
でバックもうまくできず、どうしたらいいのかわかりません。
初心者です。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/14 01:52