Access a VBA global variable/constant from a worksheet cell

L

Lina

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
 
M

Mike Fogleman

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
 

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