Hello,
Could someone please write me a quick macro that when I edit a cell in Column A it checks the value I inputted and displays a message if it is lower than the last value. E.G.
A1 - 0
A2 - 1
A3 - 2
A4 - 0 - Display a message when this value is entered.
All I have at the moment is this, and I cant seem to get it to work properly with my requirements.
Thanks![]()
Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address = "$A$1" Then MsgBox "You just changed " & Target.Address End If End Sub
Bookmarks