Hi all,
I'd like to apply 1 formatting rule,
with multiple text conditions.
Something like this:
Code
With Range("A:A")
.FormatConditions.Add Type:=xlTextString, String:=Array("01234", "56789"), TextOperator:=xlContains
.FormatConditions(1).Interior.Color = vbYellow
End With
I'd like to avoid:
a) looping Arrays and Cells on worksheet to apply formatting individually based on If statement (too much looping ..)
b) creating =OR() function in conditional formatting setup, while array would probably exceed that functions arguments limit.
Thank you for any advice!