ExcelDNA的入门使用

发布于:2023-04-27 ⋅ 阅读:(683) ⋅ 点赞:(0)

 ExcelDNA用于开发自定义函数方面比较方便。

具体使用分以下步骤:

(1)利用vs创建一个类库项目;

(2)利用NUGUT引入ExcelDna.AddIn

(3)建一个类,写入自定义函数。注意,自定义函数应该用static修饰

using ExcelDna.Integration;

public class MyFirstDnaFunction
{
    [ExcelFunction(Description="Add one number to another", Category="MyFunctions")]
    public static double AddNumber(
              [ExcelArgument(Name="x",Description="the first number")]double x,
              [ExcelArgument(Name="y",Description="the second number")]double y)
    {
        return x * y;
    }
}

(4)生成项目

(5)在excel中加载(开发工具-加载项-excel加载项)

补充:关于智能提示Intellisense,可以在github上下载xll文件(下载地址:github.com/excel-dna/intellisense/releases),然后在excel中加载

Releases · Excel-DNA/IntelliSense · GitHubhttps://github.com/excel-dna/intellisense/releases