I have the following code
and it works just as designed. however, i only want it to change the offset target cells once... or the first time the cell changes.
Can someone help?
Code:
Private Sub Worksheet_change(ByVal Target As Range)
If Not Intersect(Target, Range("G2:G50")) Is Nothing Then
If Target.Value > 1 Then
Target.Offset(0, -5).Value = Format(Now, "hh:mm")
Target.Offset(0, -6).Value = Format("N")
end if
end if
end sub
and it works just as designed. however, i only want it to change the offset target cells once... or the first time the cell changes.
Can someone help?