I'm sending data requests out for updating and would like to know which cells have been changed/updated. From the forums, I found the following VBA code which does what I want. What I've noticed is that if I modify a cell I don't want to, I can't undo it (Ctrl-Z doesn't work and Edit - Undo is grayed out). As someone not familiar with VBA, is there something in the code that prevents undo, or something else going on?
Private Sub Worksheet_Change(ByVal Target As Range)
Target.Interior.ColorIndex = 4
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
Target.Interior.ColorIndex = 4
End Sub