'-----------------------------------------------------------------
Function DocProps(prop As String)
'-----------------------------------------------------------------
Application.Volatile
On Error GoTo err_value
DocProps = ActiveWorkbook.BuiltinDocumentProperties _
(prop)
Exit Function
err_value:
DocProps = CVErr(xlErrValue)
End Function
and enter in a cell such as
=DocProps ("last author")
or
=DocProps ("creation date")
--
HTH
Bob Phillips
(replace somewhere in email address with gmail if mailing direct)
"Les Stout" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Good day all, i need to get the date a file was created, is this
> possible ? All i can find is date last modified.. Any help with code
> would be appreciated
>
> Les Stout
>
> *** Sent via Developersdex http://www.developersdex.com ***