to Frank Kabel Please

  • Thread starter Thread starter Steved
  • Start date Start date
S

Steved

Hello Frank from Steved
You gave me the below Function which I am using.

Is it possible also to use the below function to update
=Docprops when a change is made to a cell in a worksheet.

The objective for the above is the Date will Update, if
any Cell is updated in WorkSheet.
Thankyou

=DocProps("Last save time")

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
 
Back
Top