Im trying to find a way to count cell value changes, eg. if cell A1 is changed, B2 value would be 1. When A1 is changed again, B2 is 2, etc.
I've managed to do it with this:
but it's not working if there is a formula inside cell (eg. =IF(C1="Yes";1;0)).Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "A17" Then [E14].Value = [E14].Value + 1
End Sub
Bookmarks