List of VBA Commands/Operators for Excel 2003 SP3

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
 
G

Gord Dibben

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
 
B

Bernie Deitrick

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top