View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
mmc308 mmc308 is offline
external usenet poster
 
Posts: 19
Default Recording who last saved a workbook

Thanks for you help
Michael


"Bob Phillips" wrote:


'-----------------------------------------------------------------
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 ("last save time")


--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"mmc308" wrote in message
...
Looking to see if there is a way to record who last saved the current

workbook