質問編集履歴
1
コードの補足
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
|
11
11
|
```GAS
|
12
12
|
const ss = SpreadsheetApp.getActiveSpreadsheet();
|
13
|
-
const sh = ss.getSheetByName("");
|
13
|
+
const sh = ss.getSheetByName("シートの名前");
|
14
14
|
sh.getRange('A1:B2').setBorder(true,true,true,true,true,true,true,SpreadsheetApp.BorderStyle.DOUBLE);
|
15
15
|
```
|
16
16
|
|