Excel formula in macro

C

Chip Pearson

It depends on exactly what you mean. You can call most Excel worksheet
functions with code like

Result = Application.WorksheetFunction.FunctionName(...)

Your post isn't clear about what you actually want to do.
 
I

ibeetb

The easiest is application.worksheetfunction. and after you type the
dot, all the functions will appear.
Also, typing vba. will drop down the list of vba functions....that is vba
dot
 
Top