Excel formula in macro

  • Thread starter Thread starter johndoe
  • Start date Start date
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.
 
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
 
Back
Top