It is the simplest functionality and we will see how to do so.
Objective: Create an add-in to include new excel functions.
We are using the following packages:
- ExcelDna.AddIn: Excel-DNA library which is mandatory to create user-defined functions and macros in Excel.
- NetOffice.Excel: Wrapper to access MS Office Excel application.
Nuget command
We will explain how to create an add-in to add extra user-defined function to Excel. We assume that you are using the packages listed above. You can also download the sample from github or use the following command line.
Program class (entry point)
The class program is the entry point of the add-in as it is thanks to this class that Excel-DNA can register the add-in to Excel. It can be only one class that derive from ** IExcelAddIn** in an add-in.
This is where you can instantiate objects that you want to keep during the life cycle of the add-in. If you are using an Inversion of Control container, this is where you can start it.
In the present example, we will only keep a reference to the Excel application.
Note:
Note: The *AutoClose* method is never called during the life cycle of an add-in.
The user-defined functions (udf)
We store the new user-defined function in a folder named Function for simplicity. We included 2 examples provided by Excel-DNA. For more information on how to create user-defined function, we recommend you to look at the following Excel-DNA documentation on how to create your first C# add-in.
From a user-defined function you can retrieve information from a database, a web service or do calculation to display a value or an array of data.