Results 1 to 3 of 3

Thread: Excel Category property

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Oct 2002
    Location
    England
    Posts
    21

    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

  2. #2
    Lively Member
    Join Date
    Jul 2005
    Location
    Canada
    Posts
    66

    Re: Excel Category property

    I haven't use it much, but it appears the category information is stored in BuiltinDocumentProperties.

    VB Code:
    1. For Each p In ActiveWorkbook.BuiltinDocumentProperties
    2.     Debug.Print p.Name & ": "; p.Value
    3.  Next

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Oct 2002
    Location
    England
    Posts
    21

    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
  •  



Click Here to Expand Forum to Full Width