Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a way to change the file properties of a
spreadsheet? What I want to do is set a flag within the Comments section of the File properties so that if a certain function is performed, it'll set the flag and the next time the spreadsheet is open that function won't appear again. Is that possible? Any help would be appreciated. Kirk |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Kirk,
This code creates a custom property. Just tag it to your code ActiveWorkbook.CustomDocumentProperties.Add Name:="myName", _ LinkToContent:=False, _ Type:=msoPropertyTypeString, _ Value:="Bob", _ LinkSource:=False -- HTH ------- Bob Phillips ... looking out across Poole Harbour to the Purbecks "Kirk" wrote in message ... Is there a way to change the file properties of a spreadsheet? What I want to do is set a flag within the Comments section of the File properties so that if a certain function is performed, it'll set the flag and the next time the spreadsheet is open that function won't appear again. Is that possible? Any help would be appreciated. Kirk |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel Properties Tab on Doc Save | Excel Discussion (Misc queries) | |||
File Properties Modified Date not changing | Excel Discussion (Misc queries) | |||
changing folder order in File Save | Excel Discussion (Misc queries) | |||
Changing a comma separated text file and save it. | Excel Discussion (Misc queries) | |||
Cell changing it's properties | New Users to Excel |