How do I track who uses my Excel spreadsheet?

后端 未结 2 1989
后悔当初
后悔当初 2021-02-06 14:32

I created an Excel spreadsheet that my boss wants to put on the company\'s internal website. The spreadsheet contains some seldom-used, esoteric, but handy functions that only

2条回答
  •  孤城傲影
    2021-02-06 14:58

    Expanding on David's answer you could also use a macro that auto-runs when the sheet is opened and it could write Environ("username") to the next available row in a hidden worksheet. I've used Environ("username") before and it is quite useful, quick, and easy.

    This sub on any worksheet will automatically run (IIRC):

    Private Sub Auto_Open()
    
    End Sub
    

    You could also put a time stamp in the next column to show when the spreadsheet was used...

提交回复
热议问题