View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Satin Satin is offline
external usenet poster
 
Posts: 5
Default Store information

Thanks Paul.

This is the last resort I have. It is quite surprising that Excel does not
provide any such feature while it is present is word(.variable) and
powerpoint(.tag). Same Owner.. different models ..!! Hail MS.

Cheers ;-)
-Satin


" wrote:

Hi
Their is nothing like the .Variable property in Excel.
The easiest thing to do (and the most accessible for you) is keep such
information on a hidden sheet. You can make this very hidden (so that
it cannot be unhidden from the menu bar) using

worksheets("Notes").Visible = xlVeryHidden

code will unhide it
worksheets("Notes").Visible = TRUE

but you won't see the sheet in the collection of hidden sheets if you
try and go look for it.

regards
Paul

On May 3, 7:48 am, Satin wrote:
I am creating a Excel Plugin. I want to store some information regarding the
user who creates that excel and the person who modify it subsequently.

I want to store this info in some hidden way, available to be viewed only
thought a custom menu item/ dialog box I create.

This is possible in word using the ".variable" property where in i can
create a "embedded" variable in the document and can refer to it
programatically. I dont see any such facility in Excel.

Any Comments/ Suggestion will be useful.

-Satin