Click here to Skip to main content
Click here to Skip to main content

Create an Automation Add-In for Excel using .NET

By , 3 Aug 2004
 

Introduction

Excel versions 2002 (XP) and 2003 introduce the concept of an Automation Add-In. Automation Add-Ins allow public functions in COM libraries to act as User-Defined Functions (UDFs) in Excel, thus to be referenced directly from cell formulae.

This article provides a detailed walk-through of how to create an Automation Add-In for Excel using Visual Studio .NET.

Background

Some relevant knowledge base articles that discuss Automation Add-Ins are:

  • Q291392 - INFO: Excel COM Add-ins and Automation Add-ins.
  • Q285337 - How To Create a Visual Basic Automation Add-in for Excel Worksheet Functions.
  • Q278328 - XL2002: How to Mark an Automation Add-In Function as Volatile.

A commercial library that presents equivalent (and more) functionality, and makes this all very easy is ManagedXLL. However, this library is quite expensive and requires run-time licenses to distribute user code. It uses the native XLL API for creating an add-in to Excel, and thus also supports older versions of Excel.

The exact requirements for creating a COM server that can be used as an Automation Add-In are poorly documented, complicated by the fact that the default options in Visual Basic 6.0 seem to work perfectly.

When creating a COM library using .NET, an attempt to add the library as an Automation Add-In in Excel causes the error: “The file you selected does not contain a new Automation Server, or you do not have sufficient privileges to register the Automation Server”.

Here, I describe how to create an Automation Add-In in .NET, using C#. The techniques should apply to any .NET language.

There seem to be three tricks for implementing an Automation Add-In for Excel using .NET:

  1. The library needs to be registered for use through COM. This can be done by marking the project to ‘Register for COM Interop’ or by manual registration using RegAsm.exe.
  2. The ‘Programmable’ registry key needs to be added in the registry, under HKCR\CLSID\{xxx}\. This can be automated by adding appropriate ComRegisterFunction methods to the class.
  3. The class needs to be marked with the ClassInterface attribute, with value ClassInterfaceType.AutoDual (explicit interface implementations can work too). The default class interface that is generated is a dispatch interface - Excel seems to ignore the dispatch interface for Automation Add-Ins.

Walk-through

  1. Create the library:
    1. Create a new C# Class Library Project, called NAddIn.
    2. Select the project's properties; under ‘Configuration Properties’, ‘Build’, set ‘Register for COM Interop’ to True.
    3. Rename the class, add a namespace declaration, set the ClassInterface attribute of the class, and add a function to be used from Excel:
      using System;
      using System.Runtime.InteropServices;
      
      namespace NAddIn
      {
          [ClassInterface(ClassInterfaceType.AutoDual)]
          public class Functions
          {
              public Functions()
              {
              }
      
              public double Add2(double v1, double v2)
              {
                  return v1 + v2;
              }
      
              [ComRegisterFunctionAttribute]
              public static void RegisterFunction(Type t)
              {
                  Microsoft.Win32.Registry.ClassesRoot.CreateSubKey(
                      "CLSID\\{" + t.GUID.ToString().ToUpper() + 
                         "}\\Programmable");
              }
      
              [ComUnregisterFunctionAttribute]
              public static void UnregisterFunction(Type t)
              {
                  Microsoft.Win32.Registry.ClassesRoot.DeleteSubKey(
                      "CLSID\\{" + t.GUID.ToString().ToUpper() + 
                        "}\\Programmable");
              }
          }
      }
    4. Build the NAddIn project to create bin\debug\NAddIn.dll.
  2. Test the Add-In in Excel:
    1. Open a new workbook in Excel.
    2. Select Tools, Add-Ins, Automation.
    3. NAddIn.Functions should be listed - select it. OK.
    4. In a cell, type =Add2(3,4)
    5. The cell should display 7.
To register the .dll after moving it, run regasm with the /codebase flag (typically as c:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\RegAsm /codebase NAddIn.dll). You will get a warning about the assembly being unsigned - you can ignore this (or sign the assembly as documented).

History

  1. Initial version - 19 July 2004.
  2. Removed type library embedding instructions - 19 July 2004.
  3. Added ComRegisterFunction bits to automate registry changes - 30 July 2004.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Govert van Drimmelen
Web Developer
South Africa South Africa
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralVery nice, but on my machine needed ComVisiblememberm_albert1372 Aug '10 - 13:24 
GeneralMy vote of 5memberm_albert1372 Aug '10 - 13:21 
Generalsome working examplesmembermy interest22 Jul '10 - 10:35 
GeneralMy vote of 2groupdhiraj.upadhyay22 Apr '10 - 21:02 
GeneralUDF Listesd in "Inactive Application Add-Ins"memberJean-Pierre Gervasoni12 Apr '10 - 0:32 
GeneralRe: UDF Listesd in "Inactive Application Add-Ins"memberMichael Schäuble11 May '10 - 0:44 
GeneralRe: UDF Listesd in "Inactive Application Add-Ins"memberJean-Pierre Gervasoni11 May '10 - 3:38 
GeneralC# Method visible in VBA but not reachablememberAsim Mahmood29 Apr '09 - 21:32 
GeneralThanks and promote more your ExcelDna!memberAlain VIZZINI9 Mar '09 - 16:30 
Questionhow to make a value in an excel cell read only using c#?memberabhiram_nayan22 Jan '09 - 1:43 
Questiona button on the excel active cell?memberabhiram_nayan7 Jan '09 - 2:46 
Questionhow to call this " Add2(3,4)" from another c#.2005 programmemembervishal nikam8316 Dec '08 - 20:44 
AnswerRe: how to call this " Add2(3,4)" from another c#.2005 programmememberGovert van Drimmelen24 Dec '08 - 12:08 
AnswerRe: how to call this " Add2(3,4)" from another c#.2005 programmememberjibin.mn5 Aug '10 - 1:22 
General#REF!memberabi8011 Aug '08 - 4:26 
GeneralAddin in Excel 2002 getting registered - Add2 function is not shown in function browser in Excel 2002.memberMember 38506459 Jul '08 - 3:20 
Questioncannot get .dll to work as addinmemberKl_Gl21 Jun '08 - 23:16 
AnswerRe: cannot get .dll to work as addinmembermike198924 Aug '10 - 11:28 
QuestionUsing dll as an add-in for a different machinememberwilliamw7 May '08 - 3:08 
AnswerRe: Using dll as an add-in for a different machinememberwilliamw8 May '08 - 6:07 
QuestionIs it possible to create functions that take a range/an array as input?memberJosefLagergren5 Mar '08 - 0:48 
QuestionInteresting Errormemberpinkfloydfan26 Oct '07 - 2:36 
GeneralOnly works on my local machinememberAnthonyLondon25 Oct '07 - 11:13 
GeneralRe: Only works on my local machinememberAnthonyLondon26 Oct '07 - 1:18 
QuestionGreat! But how do we add explanation to the functions? [modified]memberpinkfloydfan23 Oct '07 - 23:33 
GeneralNeed Helpmembermousum_cp3 Sep '07 - 2:04 
QuestionNeed Help moving the dll/addin to another machine !!!!!!!!!!!memberanjana198118 Jul '07 - 11:53 
AnswerRe: Need Help moving the dll/addin to another machine !!!!!!!!!!!memberlukejackson30 May '08 - 1:25 
QuestionNot see the function Add2 in Excel's insert functionmembersimplexyz13 Jun '07 - 3:37 
AnswerRe: Not see the function Add2 in Excel's insert functionmemberGovert van Drimmelen13 Jun '07 - 4:54 
Generali se it in excel automation list :(member_sardaukar_12 Jun '07 - 13:47 
GeneralRe: i se it in excel automation list :( [modified]memberzuraw22 Dec '08 - 22:53 
GeneralGetting a "REF!" error on using Add2memberameysj@gmail.com29 May '07 - 4:40 
GeneralRe: Getting a "REF!" error on using Add2memberameysj@gmail.com31 May '07 - 4:30 
GeneralForm Windowmemberrandal.junior23 Apr '07 - 2:34 
Questionmscoree.dll not found - VB.NETmemberrandal.junior2 Apr '07 - 3:43 
AnswerRe: mscoree.dll not found - VB.NETmemberStuart McConnell11 Apr '07 - 0:15 
GeneralRe: mscoree.dll not found - VB.NETmemberrandal.junior11 Apr '07 - 1:40 
AnswerRe: mscoree.dll not found - VB.NET [modified]memberharafeh20 Apr '07 - 6:48 
GeneralRe: mscoree.dll not found - VB.NETmemberrandal.junior20 Apr '07 - 12:11 
GeneralRe: mscoree.dll not found - VB.NETmemberlukejackson30 May '08 - 1:31 
GeneralRe: mscoree.dll not found - VB.NETmembere800518 Aug '08 - 11:15 
GeneralTrap events linked with User Defined functionmemberparmanu1235 Feb '07 - 5:08 
GeneralRe: Trap events linked with User Defined functionmemberparmanu1237 Feb '07 - 3:12 
Questionhow to fill the multiple cell using UDF created using automation add-insmemberparmanu1235 Feb '07 - 5:01 
GeneralTo attach to a Com+ Applicationmembertamasu14 Jan '07 - 2:56 
AnswerRe: To attach to a Com+ Application [modified]memberti-oh14 Jan '07 - 13:21 
GeneralRe: To attach to a Com+ Applicationmembertamasu16 Jan '07 - 9:43 
GeneralRe: To attach to a Com+ Applicationmemberti-oh17 Jan '07 - 0:35 
GeneralRe: To attach to a Com+ Applicationmembertamasu17 Jan '07 - 8:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 4 Aug 2004
Article Copyright 2004 by Govert van Drimmelen
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid