List of VBA Commands/Operators for Excel 2003 SP3

  • Thread starter Thread starter MichaelRobert
  • Start date Start date
M

MichaelRobert

Having been often helped by this forum with my Macro questions, I feel that I
need a list of the VBA Commands (Operators? Functions? Events?) available to
me in Excel 2003 SP3.

Can anyone recommend a source?

Thanks.

Mike
 
You must be a little more precise with your list.

What you describe would encompass many thousands of items.

VBA help is the most concise source.

Type "application" into the help dialog and start wandering through.

Also browse through the Object Browser


Gord Dibben MS Excel MVP
 
Mike,

Run this macro:

Sub OpenVBAHelp()
ActiveWorkbook.FollowHyperlink Address:="C:\Program Files\Microsoft
Office\Office11\1033\VBAXL10.CHM", _
NewWindow:=True
End Sub

There will be expandable lists of objects, methods, etc/.

HTH,
Bernie
MS Excel MVP
 
Back
Top