基本的な質問で申し訳ありません。
非エンジニアのGASビギナーです。
GAS本を見たりしましたが、どのように修正すればよいのかが分かりません。
不勉強で恐縮ですが修正方法のアドバイスをいただけますでしょうか?
お手数ですがビギナーでも分かるよう解説いただけると助かります。
<前提・実現したいこと>
取得した日付データをスプレッドシートのセルに補充させたいです。
具体的には、
日付1:yyyy年mm月dd日 + (曜日) >> セルU3とAD3に補充
日付2:yyyy年mm月dd日 + (曜日) >> セルU64にAD64に補充
<発生している問題・エラーメッセージ>
Exception: The parameters (String) don't match the method signature for SpreadsheetApp.Range.setValues.
myFunction2 @ 週次入力シート作成20210609.gs:137
※本日GAS起動だと下ソースコード(条件6)に合致。
★部でエラーとなり、処理が止まります。
文字列日付の場合、「getRangeとsetValuesは使えない」という意味のエラーか?
<該当のソースコード>
長文となりますが、記載したコード全文を記載します。
function myFunction2() { const ss = SpreadsheetApp.getActiveSpreadsheet(); const date = Utilities.formatDate(new Date(), 'Asia/Tokyo','yyyyMMdd'); //シート名生成処理の際、文字列にできるようにconstではなくletで定義 let mySheetName =""; let closeDay =""; //「入力シート」のシート名指定準備_「開始日」曜日の判定 const openDate = new Date() const o1 = Utilities.formatDate(openDate, 'Asia/Tokyo', 'yyyyMMdd'); const o2 = Utilities.formatDate(openDate, 'Asia/Tokyo', 'yyyy年MM月dd日'); const openDayN = openDate.getDay() const array = ['日', '月', '火', '水', '木', '金', '土']; const openDay = '(' + array[openDayN]+ ')'; console.log(o1 + openDay + "~"); mySheetName = o1 + "~"; console.log(mySheetName); // すでに「入力シート」が作られていたらメッセージ1を表示し、処理終了 if (ss.getSheetByName("ひな形 のコピー") != null) { Browser.msgBox("今週分のシートはすでに「作成済」です。\n処理を中止します。\nファイル内のシートをもう一度確認してください。"); //存在しない場合は、処理継続 }else{ //「ひな形」シートをコピーし(一番右に追加される)新「入力シート」を左から2番目に移動する。 const sh_temp1 = ss.getSheetByName("ひな形"); sh_temp1.copyTo(ss).activate(); ss.moveActiveSheet(2); //「入力シート」の氏名(C2)の内容を「入力シート」氏名欄(E3、E64)にコピー const sh_temp2 = ss.getSheetByName("入力シート"); const copyValue1 = sh_temp2.getRange('C2').getValues(); console.log(copyValue1); const sh_new = ss.getSheetByName("ひな形 のコピー"); sh_new.getRange('E3').setValues(copyValue1); sh_new.getRange('E64').setValues(copyValue1); //「入力シート」の項目①(C6)の内容を「入力シート」項目①欄(F5、F66)にコピー const copyValue2 = sh_temp2.getRange('C6').getValues(); console.log(copyValue2); sh_new.getRange('F5').setValues(copyValue2); sh_new.getRange('F66').setValues(copyValue2); //「入力シート」の項目②(C7)の内容を「入力シート」項目②欄(F6、F67)にコピー const copyValue3 = sh_temp2.getRange('C7').getValues(); console.log(copyValue3); sh_new.getRange('F6').setValues(copyValue3); sh_new.getRange('F67').setValues(copyValue3); //「入力シート」の項目③(C8)の内容を「入力シート」項目③欄(F7、F68)にコピー const copyValue4 = sh_temp2.getRange('C8').getValues(); console.log(copyValue4); sh_new.getRange('F7').setValues(copyValue4); sh_new.getRange('F68').setValues(copyValue4); //「入力シート」の日付欄(U3)の指定準備_終了日の判定 //(条件1)「開始日」が月曜のとき「終了日」は4日後をセット if (openDayN ==1) { closeDate =new Date(openDate.setDate(openDate.getDate() + 4)); const c = Utilities.formatDate(closeDate, 'Asia/Tokyo', 'yyyy年MM月dd日'); const closeDayN = closeDate.getDay() const closeDay = '(‘+array[closeDayN]+’)'; const myDate = o2 + openDay + "~" + c + closeDay; console.log(o2 + openDay); console.log(myDate); sh_new.getRange('U3').setValues(o1 + openDay); sh_new.getRange('AD3').setValues(c + closeDay); sh_new.getRange('U64').setValues(o1 + openDay); sh_new.getRange('AD64').setValues(c + closeDay); //(条件2)火曜のとき「終了日」は3日後をセット }else if (openDayN ==2) { closeDate =new Date(openDate.setDate(openDate.getDate() + 3)); const c =Utilities.formatDate(closeDate, 'Asia/Tokyo', 'yyyy年MM月dd日'); const closeDayN = closeDate.getDay() const closeDay = '(‘+array[closeDayN]+’)'; const myDate = o2 + openDay + "~" + c + closeDay; console.log(o2 + openDay); console.log(myDate); sh_new.getRange('U3').setValues(o1 + openDay); sh_new.getRange('AD3').setValues(c + closeDay); sh_new.getRange('U64').setValues(o1 + openDay); sh_new.getRange('AD64').setValues(c + closeDay); //(条件3)水曜のとき「終了日」は2日後をセット }else if (openDayN ==3) { closeDate =new Date(openDate.setDate(openDate.getDate() + 2)); const c =Utilities.formatDate(closeDate, 'Asia/Tokyo', 'yyyy年MM月dd日'); const closeDayN = closeDate.getDay() const closeDay = '(' +array[closeDayN] +')'; const myDate = o2 + openDay + "~" + c + closeDay; console.log(o2 + openDay); console.log(myDate); sh_new.getRange('U3').setValues(o1 + openDay); sh_new.getRange('AD3').setValues(c + closeDay); sh_new.getRange('U64').setValues(o1 + openDay); sh_new.getRange('AD64').setValues(c + closeDay); //(条件4)木曜のとき「終了日」は1日後をセット }else if (openDayN ==2) { closeDate =new Date(openDate.setDate(openDate.getDate() + 1)); const c =Utilities.formatDate(closeDate, 'Asia/Tokyo', 'yyyy年MM月dd日'); const closeDayN = closeDate.getDay() const closeDay = '(‘+array[closeDayN]+’)'; const myDate = o2 + openDay + "~" + c + closeDay; console.log(o2 + openDay); console.log(myDate); sh_new.getRange('U3').setValues(o1 + openDay); sh_new.getRange('AD3').setValues(c + closeDay); sh_new.getRange('U64').setValues(o1 + openDay); sh_new.getRange('AD64').setValues(c + closeDay); //(条件5)金曜のとき }else if (openDayN ==1) { closeDate =new Date(openDate.setDate(openDate.getDate())); const c =Utilities.formatDate(closeDate, 'Asia/Tokyo', 'yyyy年MM月dd日'); const closeDayN = closeDate.getDay() const closeDay = '(‘+array[closeDayN]+’)'; const myDate = o2 + openDay + "~" + c + closeDay; console.log(o2 + openDay); console.log(myDate); sh_new.getRange('U3').setValues(o1 + openDay); sh_new.getRange('AD3').setValues(c + closeDay); sh_new.getRange('U64').setValues(o1 + openDay); sh_new.getRange('AD64').setValues(c + closeDay); //(条件6)それ以外のとき 当日日付をセット }else { closeDate =new Date(openDate.setDate(openDate.getDate())); const c =Utilities.formatDate(closeDate, 'Asia/Tokyo', 'yyyy年MM月dd日'); const closeDayN = closeDate.getDay() const closeDay = '('+array[closeDayN]+')'; const myDate = o2 + openDay + "~" + c + closeDay; console.log(o2 + openDay); console.log(myDate); sh_new.getRange('U3').setValues(o1 + openDay); //←★ここで失敗している sh_new.getRange('AD3').setValues(c + closeDay); sh_new.getRange('U64').setValues(o1 + openDay); sh_new.getRange('AD64').setValues(c + closeDay); //「入力シート」のシート名編集 sh_new.setName(mySheetName); } } //シート追加済のメッセージ2を表示 Browser.msgBox("今週分の入力シートを作成しました。内容を入力してください。"); }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/27 11:31 編集
退会済みユーザー
2021/06/27 11:28 編集
2021/06/27 11:36
退会済みユーザー
2021/06/27 12:05 編集
2021/06/27 11:58
退会済みユーザー
2021/06/27 12:09
2021/06/27 13:23