Hi,
Could you please help me, I have a counter that counts each time that the cell A2=D2 but i would like to recreate this for the whole columns. The following code is this:
Thanks for the help!!![]()
Private Sub Worksheet_Change(ByVal Target As Range) If Range("C2") = Range("D2") Then Application.EnableEvents = False Range("K2") = Range("K2") + 1 Application.EnableEvents = True End If End Sub
Bookmarks