I need to fill rows from A:D if Column A has text.
I tried a lot of codes.
I ended up recording macro. It fills only cells in Column A. How to replace "Selections" to a Range?
Columns("A:D").Select
Selection.FormatConditions.Add Type:=xlTextString, String:="(", _
TextOperator:=xlContains
Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
With Selection.FormatConditions(1).Interior
.PatternColorIndex = xlAutomatic
.Color = 10092543
.TintAndShade = 0
End With
Selection.FormatConditions(1).StopIfTrue = False
