+ Reply to Thread
Results 1 to 2 of 2

How can I access/display File -> properties in a cell

  1. #1
    Denny
    Guest

    How can I access/display File -> properties in a cell

    How can I access and display, from within a worksheet cell, the modified date
    in FIle->Properties? In Word you can insert the "Field" in the document. How
    can this be done in Excel?

    Thanks,
    Denny

  2. #2
    Bob Phillips
    Guest

    Re: How can I access/display File -> properties in a cell

    You need a udf

    Function DocProps(prop As String)
    Aplication.Volatile
    On Error GoTo err_value
    DocProps = ActiveWorkbook.BuiltinDocumentProperties (prop)
    Exit Function
    err_value:
    DocProps = CVErr(xlErrValue)
    End Function


    You would use like so

    =DOCPROPS("last save time")


    --

    HTH

    RP
    (remove nothere from the email address if mailing direct)


    "Denny" <[email protected]> wrote in message
    news:[email protected]...
    > How can I access and display, from within a worksheet cell, the modified

    date
    > in FIle->Properties? In Word you can insert the "Field" in the document.

    How
    > can this be done in Excel?
    >
    > Thanks,
    > Denny




+ 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