How to call VBA function from Excel cells (2010)?

前端 未结 9 1785
暖寄归人
暖寄归人 2020-11-29 06:11

I defined a few functions in a workbook using VBA, and then expected to be able to use them in a cell formula - but Excel does not recognise the function. I just get #NAME?<

9条回答
  •  离开以前
    2020-11-29 06:55

    Answer

    Putting the function in the "ThisWorkbook" area can cause the #NAME? problem. Create a new Module (Right Click on the VBAProject Folder, Insert, New Module) and put the function there instead.

    Steps

    1. Open the VBA Editor (Alt + F11 on Windows / Fn + Option + F11 on a Mac)
    2. Right-click VBAProject
    3. Select Insert >> Module
    4. Create a Public function inside Module1, for example:

      Public Function findArea(ByVal width as Double, _
                               ByVal height as Double) As Double
          ' Return the area
          findArea = width * height
      End Function
      
    5. Call it from a cell, like any other function: =findArea(B12,C12)

提交回复
热议问题