Get started developing Excel custom functions
With custom functions, developers can add new functions to Excel by defining them in JavaScript or TypeScript as part of an add-in. Excel users can access custom functions just as they would any native function in Excel, such as SUM()
.
Prerequisites
Note
If you aren't familiar with Node.js or npm, you should start by setting up your development environment.
The latest version of Yeoman and the Yeoman generator for Office Add-ins. To install these tools globally, run the following command via the command prompt.
npm install -g yo generator-office
Note
Even if you've previously installed the Yeoman generator, we recommend you update your package to the latest version from npm.
Office connected to a Microsoft 365 subscription (including Office on the web).
Note
If you don't already have Office, you can join the Microsoft 365 developer program to get a free, 90-day renewable Microsoft 365 subscription to use during development.
Build your first custom functions project
To start, you'll use the Yeoman generator to create the custom functions project. This will set up your project with the correct folder structure, source files, and dependencies to begin coding your custom functions.
Run the following command to create an add-in project using the Yeoman generator.
yo office
Note
When you run the
yo office
command, you may receive prompts about the data collection policies of Yeoman and the Office Add-in CLI tools. Use the information that's provided to respond to the prompts as you see fit.When prompted, provide the following information to create your add-in project.
- Choose a project type:
Excel Custom Functions using a Shared Runtime
- Choose a script type:
JavaScript
- What do you want to name your add-in?
My custom functions add-in
The Yeoman generator will create the project files and install supporting Node components.
- Choose a project type:
The Yeoman generator will give you some instructions in your command line about what to do with the project, but ignore them and continue to follow our instructions. Navigate to the root folder of the project.
cd "My custom functions add-in"
Build the project.
npm run build
Start the local web server, which runs in Node.js. You can try out the custom function add-in in Excel. You may be prompted to open the add-in's task pane, although this is optional. You can still run your custom functions without opening your add-in's task pane.
To test your add-in in Excel on Windows or Mac, run the following command. When you run this command, the local web server will start and Excel will open with your add-in loaded.
npm run start:desktop
Note
Office Add-ins should use HTTPS, not HTTP, even when you are developing. If you are prompted to install a certificate after you run one of the following commands, accept the prompt to install the certificate that the Yeoman generator provides. You may also have to run your command prompt or terminal as an administrator for the changes to be made.
Try out a prebuilt custom function
The custom functions project that you created by using the Yeoman generator contains some prebuilt custom functions, defined within the ./src/functions/functions.js file. The ./manifest.xml file in the root directory of the project specifies that all custom functions belong to the CONTOSO
namespace.
In your Excel workbook, try out the ADD
custom function by completing the following steps.
Select a cell and type
=CONTOSO
. Notice that the autocomplete menu shows the list of all functions in theCONTOSO
namespace.Run the
CONTOSO.ADD
function, using numbers10
and200
as input parameters, by typing the value=CONTOSO.ADD(10,200)
in the cell and pressing enter.
The ADD
custom function computes the sum of the two numbers that you specify as input parameters. Typing =CONTOSO.ADD(10,200)
should produce the result 210 in the cell after you press enter.
If the CONTOSO
namespace isn't available in the autocomplete menu, take the following steps to register the add-in in Excel.
In Excel, choose the Insert tab and then choose the down-arrow located to the right of My Add-ins.
In the list of available add-ins, find the Developer Add-ins section and select My custom functions add-in to register it.
Next steps
Congratulations, you've successfully created a custom function in an Excel add-in! Next, build a more complex add-in with streaming data capability. The following link takes you through the next steps in the Excel add-in with custom functions tutorial.
Troubleshooting
You may encounter issues if you run the quick start multiple times. If the Office cache already has an instance of a function with the same name, your add-in gets an error when it sideloads. You can prevent this by clearing the Office cache before running npm run start
.
See also
Feedback
Submit and view feedback for