Results 1 to 4 of 4

Thread: Who knows about origin of a Microsoft Excel Spreadsheet

  1. #1
    Join Date
    Jan 2012
    Posts
    55

    Who knows about origin of a Microsoft Excel Spreadsheet

    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 (IP Address) created an excel document. For example say Bob created a Excel document but i don't know he did it, but i need to find out. How do i find out Bob Created it. Is it possible.

  2. #2
    Join Date
    Jul 2011
    Posts
    640

    Re: Who knows about origin of a Microsoft Excel Spreadsheet

    You can check the document properties by clicking on FILE and selecting PROPERTIES. This might have the information that you need regarding the originator of the work sheet.

  3. #3
    Join Date
    Jun 2011
    Posts
    635

    Re: Who knows about origin of a Microsoft Excel Spreadsheet

    On the tool bar click file > properties. It may not give you the information you listed below but it should take you to logon name of the author, last saved by, date created, date last modified, etc. There is a lot of other info there but it has to be filled in manually and most people don't bother with that.

  4. #4
    Join Date
    Jun 2011
    Posts
    487

    Re: Who knows about origin of a Microsoft Excel Spreadsheet

    If you are not against using code, here is a macro that pastes the author and creation date.
    Code:
    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

Similar Threads

  1. Replies: 2
    Last Post: 23-02-2012, 12:16 PM
  2. Replies: 2
    Last Post: 17-02-2012, 04:30 PM
  3. Font colors are not working in Microsoft Excel Spreadsheet
    By Akolekar in forum MS Office Support
    Replies: 2
    Last Post: 15-02-2012, 08:03 PM
  4. add Checkbox in Ms Excel spreadsheet
    By Novino in forum Windows Software
    Replies: 4
    Last Post: 02-09-2009, 09:43 PM
  5. Corrupt spreadsheet in excel
    By Indrani in forum Windows Software
    Replies: 3
    Last Post: 06-05-2009, 03:12 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,486,430.61615 seconds with 18 queries