View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Niek Otten Niek Otten is offline
external usenet poster
 
Posts: 3,440
Default Custom Functions

In the VBE: ToolsReferences, check atpvbaen.xls
you can then use the functions as if they were intrinsic vbs functions (no prefixes);

Sub test()
Debug.Print eomonth(Date, 15)
End Sub

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"PWS" wrote in message ps.com...
| How do I call a function from the Analysis Toolpak add-in in a user
| function?
|
| Application.worksheetfunction. does not work
|
| How do i reference a function for the Toopak add-in?
|
| PWS
|