Rev Date Function

  • Thread starter Thread starter Russ
  • Start date Start date
R

Russ

Is there a function that returns the rev date of the
document? May or may not be the same as the current date.

Thanks

Russ
 
Hi
use the following UDF:

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
=DOCPROPS("last save time")
(format cell as date)
 
Back
Top