View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default global variables

You can initialize a constant:

Const Myvar As Long = 6

but for a variable, you would need to run a procedure to initialize it.

--
Regards,
Tom Ogilvy


wrote in message
oups.com...
How can I set the default value of a global variable?