List of VBA Functions and Constants

G

Guest

Hi

Does anyone know where/how I can find a comprehensive listing of Excel's VBA built-in functions (eg. Array(), UCase(), IsEmpty()) and constants (eg. vbnullstring, vbRed), either somewhere in Excel Help or a webpage

I am using Excel 2000 / VBA 6

Many Thanks

SuperJas.
 
R

Rob Bovey

Open the Visual Basic Editor and press F2 to display the Object Browser.
In the dropdown in the upper left corner of the Object Browser select VBA
from the list. The Object Browser will now display a list of everything
provided by VBA.

If you select an item you will get a short explanation in the bottom
pane. For more information, press F1 to bring up the help topic for the
selected item.

--
Rob Bovey, MCSE, MCSD, Excel MVP
Application Professionals
http://www.appspro.com/

* Please post all replies to this newsgroup *
* I delete all unsolicited e-mail responses *


SuperJas said:
Hi,

Does anyone know where/how I can find a comprehensive listing of Excel's
VBA built-in functions (eg. Array(), UCase(), IsEmpty()) and constants (eg.
vbnullstring, vbRed), either somewhere in Excel Help or a webpage?
 
A

AA

Open the Visual Basic Editor and press F2 to display the Object Browser.
In the dropdown in the upper left corner of the Object Browser select VBA
from the list. The Object Browser will now display a list of everything
provided by VBA.

If you select an item you will get a short explanation in the bottom
pane. For more information, press F1 to bring up the help topic for the
selected item.


Is there anyplace that describes the differences in the little icons for
the objects listed?
 
R

Rob Bovey

AA said:
Is there anyplace that describes the differences in the little icons for
the objects listed?

I don't know of any right off the bat, but when you click on an item in
one of the lists, the description in the bottom pane tells you what type of
thing it is. Module, Class, Sub, Function, Property, Enum, Const, etc.

--
Rob Bovey, MCSE, MCSD, Excel MVP
Application Professionals
http://www.appspro.com/

* Please post all replies to this newsgroup *
* I delete all unsolicited e-mail responses *
 
A

AA

Is there anyplace that describes the differences in the little icons for
I don't know of any right off the bat, but when you click on an item in
one of the lists, the description in the bottom pane tells you what type of
thing it is. Module, Class, Sub, Function, Property, Enum, Const, etc.


That does it, thanks.

Not that I know what all those things are....
 

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