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
| name: Custom Function returns a Promise | |
| description: A custom function which returns a Promise | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| /** | |
| * Async custom function | |
| * @customfunction | |
| */ |
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
| name: Add binding for selected range | |
| description: Adds a new binding for the selected range. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: | | |
| $("#run").click(() => tryCatch(run)); | |
| async function run() { | |
| await Excel.run(async (context) => { |
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
| name: 'Data types: Formatted numbers' | |
| description: >- | |
| This sample shows how to set and get data types using the formatted number | |
| properties. | |
| host: EXCEL | |
| api_set: {} | |
| script: | |
| content: >- | |
| $("#setup").click(() => tryCatch(setup)); |
OlderNewer