Hello,
I m trying to use the Change by Validation feature. When Cell B4 is changed to "YES" I want Cell B12 to change to yes. Both cells B4 and B12 are data list but I didn't think that would matter? Can you please take a look and let me know what I am doing wrong?
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$4" Then
If Range("B4").Value = "YES" Then
Range("b12").Value = "yes"
Else
End If
Application.EnableEvents = True
End If
End Sub
I m trying to use the Change by Validation feature. When Cell B4 is changed to "YES" I want Cell B12 to change to yes. Both cells B4 and B12 are data list but I didn't think that would matter? Can you please take a look and let me know what I am doing wrong?
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$B$4" Then
If Range("B4").Value = "YES" Then
Range("b12").Value = "yes"
Else
End If
Application.EnableEvents = True
End If
End Sub