Hi everyone,
I need help to combine the two following subs that work fine separately into one that works. Your help would be appreciated. Thanks!
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("B9")) Is Nothing Then Exit Sub
If Target.Count > 1 Then Exit Sub
Range("B19,B27").ClearContents
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("B11")) Is Nothing Then Exit Sub
If Target.Count > 1 Then Exit Sub
Range("E16,E27").ClearContents
End Sub
I need help to combine the two following subs that work fine separately into one that works. Your help would be appreciated. Thanks!
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("B9")) Is Nothing Then Exit Sub
If Target.Count > 1 Then Exit Sub
Range("B19,B27").ClearContents
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("B11")) Is Nothing Then Exit Sub
If Target.Count > 1 Then Exit Sub
Range("E16,E27").ClearContents
End Sub