Private Sub Worksheet_Change(ByVal Target As Range)
If Range("J4").Value <> "" Then
Range("B4:K4").Interior.ColorIndex = 3
Else
Range("B4:K4").Interior.ColorIndex = xlColorIndexNone
End If
End Sub
=$J$4<>""
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 10 And Target.Row >= 4 Then
If Target.Value <> "" Then
Range("B" & Target.Row & ":K" & Target.Row).Interior.ColorIndex = 3
Else
Range("B" & Target.Row & ":K" & Target.Row).Interior.ColorIndex = xlColorIndexNone
End If
End If
End Sub