Globally available defined names?

  • Thread starter Thread starter Martin
  • Start date Start date
M

Martin

Hi all,

I was wondering whether there's any way for an add-in to define names (or
something similar) that would be available from other workbooks. For example,
I'd like to define "TAXRATE" as 0.08, and have it so that from any open
workbook, I can type =TAXRATE and get that number back.

I know something like this could be accomplished with a function -- i.e., I
could define a function called TAXRATE() in the add-in that just returns 0.08
-- but I'mspecifically looking for a way to avoid the parentheses when using
it (i.e. I'd like =TAXRATE not =TAXRATE()).

Any information would very helpful. Thanks.
 
Yes, you can do that *but* you'd have to include the name of the add-in:

Add-in named Defs (short for definitions)

=Defs.xla!TaxRate
 

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

Back
Top