Last active
July 10, 2020 05:30
-
-
Save kinuasa/004a60d2a0c251961f941e0239c066c0 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 range = workbook.getActiveCell(); | |
| range.setValue("こんにちは、世界!"); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment