View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Mike Fogleman[_2_] Mike Fogleman[_2_] is offline
external usenet poster
 
Posts: 206
Default Access a VBA global variable/constant from a worksheet cell

You could make the cell value equal to the constant, but you can't access it
from the cell. What you can do is create a name for the constant with
Insert/Name/Define and access that from a cell. Create a name called glad,
and in the Refers to: box put your constant, Gladiator, for example. In your
cell type = glad and the word Gladiator will appear.

Mike F
"Lina" wrote in message
...
I want to declare several constants in VBA that should be accessible from
the
worksheet cells.
Is it at all possible? I tried several combinations of GLOBAL, PUBLIC,
inside workbook/workbook_open, inside workbook/general, inside a user
module/general, inside a user module/some function. Can get the value
displayed in a MsgBox and the like, but whenever I try to assign it to a
cell
I get the #NAME error. I know I could just assign it to some hidden cell
in
the workbook but I thought there must be a cleaner solution...

Thanks in advance!
Lina