Last active
July 10, 2020 08:14
-
-
Save kinuasa/48bdc812163e6764c01a13a309d296c4 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(); | |
| console.log("value:" + range.getValue() + ", text:" + range.getText()); //getValueとgetTextの違い | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment