+ Reply to Thread
Results 1 to 2 of 2

Custom File Properties

  1. #1
    Registered User
    Join Date
    10-30-2003
    Location
    Dunstable, England
    MS-Off Ver
    2010
    Posts
    69

    Custom File Properties

    Can you help?

    I use a template that has custom properties linked to the cells.
    Is there anyway I can either extract those particular properties to a list
    I don't what to data track the information using the template wizard, just a straight forward list or this my only option?

    Julie Willis

  2. #2
    Jim Rech
    Guest

    Re: Custom File Properties

    You'd need a macro to make the list.

    Sub ListCustProps()
    Dim Counter As Integer
    With ActiveWorkbook
    For Counter = 1 To .CustomDocumentProperties.Count
    Cells(Counter, 1).Value = .CustomDocumentProperties(Counter).Name
    Cells(Counter, 2).Value = .CustomDocumentProperties(Counter).Value
    Next
    End With
    End Sub


    --
    Jim
    "jujuwillis" <[email protected]> wrote
    in message news:[email protected]...
    |
    | Can you help?
    |
    | I use a template that has custom properties linked to the cells.
    | Is there anyway I can either extract those particular properties to a
    | list
    | I don't what to data track the information using the template wizard,
    | just a straight forward list or this my only option?
    |
    | Julie Willis
    |
    |
    | --
    | jujuwillis
    | ------------------------------------------------------------------------
    | jujuwillis's Profile:
    http://www.excelforum.com/member.php...fo&userid=2123
    | View this thread: http://www.excelforum.com/showthread...hreadid=391762
    |



+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1