I've deployed the Excel-Custom-Functions sample successfully and can use the new JS functions.
After changing the code/definition in customfunctions.js
, I've restarted my web server, started Excel, inserted the custom functions from the Office Add-ins page again but still get the original functions.
If I start Excel without inserting the sample again, the functions are still known!?
How can I force Excel to remove such an add-in and reload it from scratch?
Example: The sample contains several custom functions and their corresponding registration:
Excel.Script.CustomFunctions["CONTOSO"]["ADD42"] = {
...
Excel.Script.CustomFunctions["CONTOSO"]["GETTEMPERATURE"] = {
...
Rename a function, and remove another function completely:
Excel.Script.CustomFunctions["CONTOSO"]["ADD42RENAMED"] = {
...
/* Excel.Script.CustomFunctions["CONTOSO"]["GETTEMPERATURE"] = {
...
Excel will still show the old metadata afterwards.