Skip to content Skip to sidebar Skip to footer

How To Set Custom Settings For Worksheet Using Excel Javascript Api?

I can set settings for whole workbook like here: Office.context.document.settings.set('myKey', JSON.stringify(myValues)); Is there way to do the same but for specific worksheet ?

Solution 1:

You should retrieve the Worksheet.id property and include it as part of each key you set.

(Worksheet names are also exposed to the API, but the user can change them, so id is recommended here.)

-Michael (PM for Office add-ins)

Post a Comment for "How To Set Custom Settings For Worksheet Using Excel Javascript Api?"