Last active
July 10, 2020 05:24
-
-
Save kinuasa/3afcc5bbb1d9c35215c6d0e4ffcbc83b to your computer and use it in GitHub Desktop.
Office Scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //シート名を指定してシートを取得 | |
| function main(workbook: ExcelScript.Workbook) { | |
| let sheet = workbook.getWorksheet("Sheet1"); | |
| sheet.getRange("B2").select(); //セルB2を選択 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment