I have my UsageLog This Thread working for file opened, file saved, and username, but I cannot get it to record when changes are made anywhere in the workbook.
I tried:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
ActiveWorkbook.Worksheets(“UsageLog”).Range(“A65536”).End(xlUp).Offset(0, 1).Value = Time$ & Space(5) & Date$
End Sub
saved in ThisWorkbook, without success, so I tried the simpler:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
MsgBox “Range ” & Target.Address & “was changed”
End Sub
Taken from John Walkenbach, but again no success. Can anyone help please?