Record Actions

M

Martin

Hello,

I was wondering if there was a way of making a note of a users actions,
either from keyboard or mouse i.e. right hand mouse click | delete.

I have the following code:

Private Sub Worksheet_Change(ByVal Target As Range)

If Sheets(Environ("username")).Range("A2").Value = Empty Then
Sheets(Environ("username")).Range("A2").Value = Target.Address

Else

Worksheets(Environ("username")).Range("A65536").End(xlUp)(2).Value =
Target.Address

End If

End Sub

This records the cell that the user has changed so all I need now is to
record the action. Is this possible?

Thanks in advance.

Martin
 

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

Top