Please Note: This article is written for users of the following Microsoft Excel versions: 97, 2000, 2002, and 2003. If you are using a later version (Excel 2007 or later), this tip may not work for you. For a version of this tip written specifically for later versions of Excel, click here: Using Custom Add-Ins.

Using Custom Add-Ins

Written by Allen Wyatt (last updated September 12, 2019)
This tip applies to Excel 97, 2000, 2002, and 2003


2

After you have created your own add-in, you can use it in your system. Once the add-in has been loaded, the functions or features in the add-in become available to any other workbook you may have open, or any time you are using Excel. All you need to do to use your add-in is follow these steps:

  1. Choose Add-Ins from the Tools menu. This displays the Add-Ins dialog box. (See Figure 1.)
  2. Figure 1. The Add-Ins dialog box.

  3. If your custom add-in is visible in the dialog box, click the check box beside it and skip to step 6.
  4. Click on the Browse button. Excel displays a standard file dialog box.
  5. Use the controls in the dialog box to locate and select your custom add-in.
  6. Click on OK. The add-in is loaded and made a part of Excel. (You can tell that the add-in is available because it is now listed in the Add-Ins dialog box.)
  7. Click on OK to close the Add-Ins dialog box.

Note:

If you would like to know how to use the macros described on this page (or on any other page on the ExcelTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

ExcelTips is your source for cost-effective Microsoft Excel training. This tip (2277) applies to Microsoft Excel 97, 2000, 2002, and 2003. You can find a version of this tip for the ribbon interface of Excel (Excel 2007 and later) here: Using Custom Add-Ins.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Not Enough System Resources

When you are using Excel, it can be frustrating to receive a cryptic error message that indicates the program cannot ...

Discover More

Saving Common Formulas

It is not uncommon to reuse formulas in a variety of workbooks. If you develop some "gotta keep" formulas, here are some ...

Discover More

Averaging without Hidden Cells

Grabbing an average of a range of cells is easy using Excel functions. If you want that average to ignore hidden cells ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More ExcelTips (menu)

Understanding Add-Ins

The primary way to extend what Excel can do is through the use of add-ins. This tip explains what they are and the ...

Discover More

Automatically Loading Add-ins

Want to load a particular add-in for use with a specific worksheet? Here's a quick way to do it using macros.

Discover More

Removing Add-ins

Add-ins are used to extend Excel's capabilities in lots of different ways. If you want to get rid of an add-in ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 8 - 5?

2015-11-04 10:37:57

Willy Vanhaelen

@Lucilla

You can't run an add-in. It loads automatically every time you run Excel. You can access it in the VB editor and insert macros in a module. However those macros are not visible in the Run macro dialog box but they can be assigned to a button in the QAT or you can assign a shortcut key to them via the OnKey method like this (insert it in the add-inn's 'ThisWorkbook' code sheet):

Private Sub Workbook_Open()
Application.OnKey "^+a", "ShowAll" 'Shift+Ctrl+A
End Sub

You can also run an add-in's macro from a custom command in the ribbon. For more info on this, see my website at: http://wv-be.com/Ribbon.asp


2015-11-03 12:13:12

Lucilla

Hi,
Thanks a lot for your tips! I am quite new with Add-Ins but also quite good with Macros. I have a macro that, with some files as input produce me a power point with graphs and tables. Now, I would like to create an Add-In from this macro. I saved the file as .xlam and I have added the Add-In on my excel... now??? how can I run the add-in? I cannot find it anywhere! I see it in the list of add-ins from the "option" menu, but from the workbook I cannot call it. I am using excel 2007.

Thanks a lot for any support you can give to me!

Best regards
Lucilla


This Site

Got a version of Excel that uses the menu interface (Excel 97, Excel 2000, Excel 2002, or Excel 2003)? This site is for you! If you use a later version of Excel, visit our ExcelTips site focusing on the ribbon interface.

Newest Tips
Subscribe

FREE SERVICE: Get tips like this every week in ExcelTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.