Hi,
I've searched around for this but can't come to a solid answer.. know it's probably very simple.
I need a code that when the cell in S4 changes to "27" then +1 in S3.
Never mind, figured it out lol
Any help would be appreciated,
Thanks,
I've searched around for this but can't come to a solid answer.. know it's probably very simple.
I need a code that when the cell in S4 changes to "27" then +1 in S3.
Never mind, figured it out lol
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("S4")) Is Nothing Then Exit Sub
If Range("S4").Value = "27" Then
Range("S3").Value = Range("S3").Value + 1
End If
End Sub
Any help would be appreciated,
Thanks,
Last edited: