|
-
Jul 14th, 2005, 08:48 AM
#1
Thread Starter
Junior Member
Excel Category property
Can anyone tell me how to return the Properties of an Excel spreadsheet, I need to get the 'Category' (from Excel menu - File, Properties, Summary).
Thanks
-
Jul 16th, 2005, 12:20 PM
#2
Lively Member
Re: Excel Category property
I haven't use it much, but it appears the category information is stored in BuiltinDocumentProperties.
VB Code:
For Each p In ActiveWorkbook.BuiltinDocumentProperties
Debug.Print p.Name & ": "; p.Value
Next
-
Aug 1st, 2005, 10:27 AM
#3
Thread Starter
Junior Member
Re: Excel Category property
Thanks WhiteWay, I knew there must be a way but couldn't find it anywhere, thanks again.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|