Origin Of a Spreadsheet

  • Thread starter Thread starter Fuabr84
  • Start date Start date
F

Fuabr84

Hi

Does ANYONE know if it is possible to find the origin of a spreadsheet
By this i mean is it possible to track who(Computer Name) or what PC (I
Address) created a excel document?

For example say Bob created a Excel document but i dont know he did bu
i need to find out... How do i find out Bob Created it? Is it possible?

Thank
 
You can check the document properties by clicking on FILE and selecting
PROPERTIES. This might have the information you need regarding the
originator of the work sheet.
 
hi,
on the tool bar click file>properties.
it may not give you the infomation you listed below but it should give to
the logon name of the author, last saved by, date created, date last
modified, ect.
there is alot of other info there but it has to be filled in manually and
most people don't bother with that.

Good luck

FSt1
 
If you are not against using code, here is a macro that pastes the author and
creation date.

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
Sheets("Sheet1").Range("A1").Value = _
ThisWorkbook.BuiltinDocumentProperties("Author")
Sheets("Sheet1").Range("A2").Value = _
ThisWorkbook.BuiltinDocumentProperties("Creation Date")
End Sub
 

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

Back
Top