Hello,
I already have this code which runs a macro when the target cell is changed and it works, but what I need it to do is:
If A6 value is greater than cell E7 then run macro1
If A6 value is equal to cell E7 value then do nothing
and if A6 cell value is less than E7 value then run macro2.
What do I need to add to the below code to achieve this? Any help would be appreaciated thanks.
Great forum btw!
![]()
Private Sub Worksheet_Change(ByVal Target As Range) If Not Intersect(Target, Range("A6")) Is Nothing Then On Error Resume Next Application.EnableEvents = False Call macro1 Application.EnableEvents = True End If End Sub
Bookmarks