Column B is a date column, Column C has 4 options, Column D is a numeric column.
If any one can help, I would like all 3 cells highlighted when inputs "Cancelled" from a drop-down menu in Column C.
I am currently using the VBA below to highlight Column C. Any help would be appreciated as I'm a VBA novice.
Private Sub Worksheet_Change(ByVal Target As Range)
Set I = Intersect(Target, Range("C5:C110"))
If Not I Is Nothing Then
Select Case Target
Case "Cancelled": NewColor = 44 ' Orange
End Select
Target.Interior.ColorIndex = NewColor
End If
End Sub
If any one can help, I would like all 3 cells highlighted when inputs "Cancelled" from a drop-down menu in Column C.
I am currently using the VBA below to highlight Column C. Any help would be appreciated as I'm a VBA novice.
Private Sub Worksheet_Change(ByVal Target As Range)
Set I = Intersect(Target, Range("C5:C110"))
If Not I Is Nothing Then
Select Case Target
Case "Cancelled": NewColor = 44 ' Orange
End Select
Target.Interior.ColorIndex = NewColor
End If
End Sub