views:

548

answers:

5

I have a set of calculation methods sitting in a .Net DLL. I would like to make those methods available to Excel (2003+) users so they can use them in their spreadsheets.

For example, my .net method:

public double CalculateSomethingReallyComplex(double a, double b) {...}

I would like enable them to call this method just by typing a formula in a random cell:

=CalculateSomethingReallyComplex(A1, B1)

What would be the best way to accomplish this?

A: 

This doesn't really directly answer your question, but it my be helpful. Rich Newman wrote a great blog post about calling .Net code from Excel. He even has a section on getting intellisense to work.

http://richnewman.wordpress.com/2007/04/15/a-beginner’s-guide-to-calling-a-net-library-from-excel/

Kilhoffer
+2  A: 

There are two methods - you can used Visual Studio Tools for Office (VSTO):

http://blogs.msdn.com/pstubbs/archive/2004/12/31/344964.aspx

or you can use COM:

http://blogs.msdn.com/eric_carter/archive/2004/12/01/273127.aspx

I'm not sure if the VSTO method would work in older versions of Excel, but the COM method should work fine.

samjudson
A: 

The link for Kihoffer's answer is this.

Craig
A: 

Thanks, Craig. I tried to edit the post several times to include the link, but it wouldn't work.

Kilhoffer
+3  A: 

You should also have a look at ExcelDna (http://www.codeplex.com/exceldna). ExcelDna is an open-source project (also free for commercial use) that allows you to create native .xll add-ins using .Net. Both user-defined functions (UDFs) and macros can be created. Your add-in code can be in text-based script files containing VB, C# or F# code, or in managed .dlls.

Since the native Excel SDK interfaces are used, rather than COM-based automation, add-ins based on ExcelDna can be easily deployed and require no registration. ExcelDna supports Excel versions from Excel '97 to Excel 2007, and includes support for the Excel 2007 data types (large sheet and Unicode strings), as well as multi-threaded recalculation under Excel 2007.

Govert