Google Apps Scriptで質問があります。
シート"from"のA3:Pをシート"to"の最終行に追加したいです。
Exception: The number of rows in the data does not match the number of rows in the range. The data has 3 but the range has 1.
とエラーが出ます。
何卒ご回答宜しくお願い致します。
GAS
1function myFunction() { 2var ss = SpreadsheetApp.getActiveSpreadsheet(); // 現在アクティブなスプレッドシートを取得 3 4var sheet_copyFrom = ss.getSheetByName('from'); 5var sheet_copyTo = ss.getSheetByName('to'); 6 7var fromRow = sheet_copyFrom.getLastRow(); 8 9var copyValue = sheet_copyFrom.getRange('A3:P'+fromRow).getValues(); 10 11var targetRow = sheet_copyTo.getLastRow()+1; 12 13sheet_copyTo.getRange('A'+targetRow+':P'+targetRow).setValues(copyValue); 14sheet_copyFrom.clearContents(); 15}
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/07 05:39