Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

XL2000: How to Use a Custom Function in Another Workbook


View products that this article applies to.

This article was previously published under Q213645

↑ Back to the top


Summary

In Microsoft Excel, you can create custom Microsoft Visual Basic for Applications functions to perform calculations. By default, these custom functions are available to all worksheets in the workbook that contains the custom function. Therefore, you can call them just as you call built-in functions in Microsoft Excel. However, if you attempt to call a custom function from outside of the workbook that contains the code, you must first make a reference to the workbook that contains the custom function.

↑ Back to the top


More information

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements. The following steps show you how to create a simple custom function, how to call the function from the workbook that contains the code, and how to call this custom function from another workbook.

To Create a Custom Function

  1. Open a new workbook.
  2. Start the Visual Basic Editor (press ALT+F11).
  3. On the Insert menu, click Module.
  4. On the module sheet, type the following code:
    Function myfunction(x)
       myfunction = x * 2
    End Function
    					
  5. Save this workbook as Test.xls.

To Call the Function from the Workbook That Contains the Function Code

To call this function from within Test.xls, type the following formula in cell A1 on Sheet1:
=myfunction(3)
Cell A1 should display the value 6, because the custom function doubled the value that was sent to it.

To Call the Function from Another Workbook

In order to call the function from a workbook, you must create a reference to the workbook that contains the code. To create a reference, follow these steps:
  1. Open a new workbook.
  2. Save this workbook as Test2.xls.
  3. Start the Visual Basic Editor (press ALT+F11).
  4. On the Insert menu, click Module.

    In the next steps, you will create a reference to Test.xls.
  5. Press CTRL+R to activate the Project Explorer window.
  6. Select VBAProject (Test.xls), and then click VBAProject Properties on the Tools menu.
  7. In the Project Name box, type MyProject and then click OK.
  8. Select VBAProject (Test2.xls) in the Project Explorer window.
  9. On the Tools menu, click References. Click MyProject, and then click OK.
You should now have a reference to the workbook that contains the custom function. You can now call this custom function the same way you would call it if the workbook contained the code. For example, in cell A1 of Test2.xls, type the formula:
=myfunction(5)
Cell A1 should display the value 10.

NOTE: If the reference is not made as outlined in steps 1-4, cell A1 displays the #NAME? error value because Microsoft Excel does not know where to find the "myfunction" custom function. Naming the function and the project with the same name also results in the #NAME? error. Note also that you cannot create a reference to an unsaved workbook, so if you encounter an error when you try to create the reference, make sure the workbook that contains the custom function has been saved.

↑ Back to the top


Keywords: KB213645, kbprogramming, kbhowto, kbdtacode

↑ Back to the top

Article Info
Article ID : 213645
Revision : 6
Created on : 10/10/2006
Published on : 10/10/2006
Exists online : False
Views : 255