how to know the original creator of one excel?

  • Thread starter Thread starter Desin Dai
  • Start date Start date
'-----------------------------------------------------------------
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 ("Author")
 
Hi Bob,

Is that any different to going to File>Properties>Summary tab?
In other words, is there something hidden deeper in the file that
contains this info?

Regards
Martin
 
Martin.

Only difference is Bob's function will return the property to a cell.


Gord Dibben MS Excel MVP
 
Back
Top