Skip to content

Instantly share code, notes, and snippets.

@kinuasa
Last active July 10, 2020 08:14
Show Gist options
  • Save kinuasa/48bdc812163e6764c01a13a309d296c4 to your computer and use it in GitHub Desktop.
Save kinuasa/48bdc812163e6764c01a13a309d296c4 to your computer and use it in GitHub Desktop.
Office Scripts
//セルの値の読み込み
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