Questions tagged [excel-web-addins]
212 questions
2
votes
1 answer
Multiple Task Panes - Office JS Excel
I finally got my "dialog" code working for gathering simple user input when I decided that I would prefer to utilize the Task Pane if possible. I've been investigating multiple taskpanes and have it working two different ways. But, I am using a…

FreeSoftwareServers
- 2,271
- 1
- 33
- 57
2
votes
1 answer
Deploy, host and sideload Excel Office Addin - Error loading add-ins
I've been trying to develop and deploy an Excel Office Addin and I've run into a few issues.
I've created an office addin by following the tutorials posted on your site. I've confirmed that I can run the addin in debugging (from my Visual studio…

Jason Lee
- 21
- 3
2
votes
1 answer
Trigger Office JS event when clicking on an image within Excel
I am trying to trigger code to run on the click of an image within Excel using Office JS.
So far I am giving the image a name in the Name Manager and then I'm using the onWorksheetCollectionSelectionChange() event handler to look for that name.
The…

Jayme Bandeira
- 48
- 4
2
votes
0 answers
Excel web addin : Is it possible to enable or disable contextual menu items at runtime?
I'm working on an Excel add-in using the JavaScript APIs.
Is it possible to enable/disable or to change visibility right-click contextual menu items at runtime ?

Bouakkez Anouar
- 89
- 8
1
vote
1 answer
Blazor Office Web Add-in Debugging not working
I am unable to set the debugger breakpoint in Visual Studio on client-side C# and Razor code when launching Office Web Add-in. I have tried to manually attach various processes to VS debugger to no avail. Is this something that is currently…

puri
- 1,829
- 5
- 23
- 42
1
vote
1 answer
Group OfficeMenu sub-menu items using Manifest.xml
I am trying to build a Webaddin for Excel using OfficeJS.
I couldn't find anything mentioned in the OfficeJS docs for my requirement.
My requirement is to group or distinguish between multiple Sub-Menu Items.
Something like in the image below
1st…

WorksOnMyLocal
- 1,617
- 3
- 23
- 44
1
vote
1 answer
How to show tooltip on Excel selected cell using Microsoft office js?
When I select the cell, open the tooltip on the selected cell. and content in a show like Formula, Some Text, etc. And using Microsoft Excel Add-in.
Search on Microshttps://www.microsoft.com/en-in/oft
R&D on this problem

Dixit Golani
- 13
- 2
1
vote
1 answer
OfficeMenu not working with excel tables and pivot tables using office JS API
I created an Excel add-in using Office JS API. This add-in opens by selecting the Excel cell and selecting the option from the context menu by pressing right-click.
For this behavior, I made changes in the manifest according below link to open an…

Poojan3037
- 310
- 1
- 9
1
vote
1 answer
How to override the default behavior of suspending formula calculations during user interactions with Office JS
I am executing formulas with the help of Office JS API.
By default, Excel suspends formula calculations while the user is actively interacting with the worksheet, such as editing cell values, selecting cells, or making other changes. Once the user…

Poojan3037
- 310
- 1
- 9
1
vote
1 answer
How to Show Ribbon Tab in an Excel Web Add-in Depending on What Workbook is Opened
I have created an Excel Task Pane Web Add-in in Visual Studio. Since then, I have introduced TypeScript, upgraded the project files from .NET Framework to .NET 7, and configured to use shared runtime. Currently I do not use the Task Pane, only…

Adam L. S.
- 825
- 1
- 7
- 14
1
vote
0 answers
How to import WASM module properly in Desktop App (excel) for office-js excel custom funtions
I have created an office-js addin for excel and am using it.
I recently added a new function to the custom function, which is not written as a pure javascript function, but a js file written in WASM, which is loaded from functions.html and…

onni22
- 11
- 4
1
vote
1 answer
Excel Javascript API : Unable to use any workbook and any other sheet while writing data in Excel is process
I have developed an Excel Javascript plugin using the React framework.
The add-in workflow is simple.
Request data from Ui using APIs
Passing entities' column names and authorized API keys
Start writing data into an active Excel sheet by pulling…

Kishan Vaishnani
- 234
- 1
- 12
1
vote
0 answers
Custom Sort Column - Excel Javascript - Office-JS
I'm trying to sort a column by a custom list that is in no specific order.
Example:
This is how data starts:
This is how data SHOULD be after sort:
This is how data currently gets sorted by below code:
Code:
var ws =…

FreeSoftwareServers
- 2,271
- 1
- 33
- 57
1
vote
0 answers
#name error when using custom function excel addin js web office in 1120.3.2.3 Online Firefox
I have created a custom function in the Excel office add-in and it's working fine with the local network, edge browser, and Mac but in Mozilla Firefox its give the error which is "#name",
I don't know why but it's happening only at Mozilla.
I have…

Vikash Choudhary
- 101
- 5
1
vote
0 answers
Office JS / Excel JS: How do I create a copy of my add-in's current workbook?
I am building an Excel Add-in and would like to create a new workbook that is a copy of the currently open workbook.
I am able to create an empty workbook using Excel.createWorkbook(), I am able to read the currently open file as plaintext using…

Pablo V
- 11
- 4