to Frank Kabel Please

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top