Is there any way to tell which user entered information in a cell?

TM74

Board Regular
Joined
Aug 2, 2007
Messages
132
I'm pretty sure this is impossible, but you never know...

Someone has caused a little bit of chaos by over typing formulas with data in a live spreadsheet.

There is no way that excel can tell me which user entered information in a particular cell is there?
 

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Hi,

There is a highlight changes function within the Tools menu you could have a look at, not used it myself.
 
Upvote 0
not that I know of, if it has already happened

You can set up a sheet to do so in future, but its a little complex...

Can a network admin person look at the change history, and see who has been in it?
 
Upvote 0
Thanks, yes I have tried the highlight changes function which is only useful if it is set up before the changes happen.

I'll have a look another way (maybe the network person way).
 
Upvote 0
You can avoid this problem by protecting your worksheet or with code. You can also add a comment to cells to identify the person who makes changes.
Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Target.HasFormula = True Then
   MsgBox "You may not edit this cell"
   Range("$A$1").Select 'Make sure A1 does not have a formula
End If
End Sub
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
Target.ClearComments
Target.AddComment.Text Text:="Cell changed " & Date & " by " & Environ("UserName")
End Sub

lenze
 
Upvote 0

Forum statistics

Threads
1,214,957
Messages
6,122,472
Members
449,087
Latest member
RExcelSearch

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top