我目前正在使用此代码向A列添加一些条件格式:
Range("A2:A5000").Select
Selection.FormatConditions.Add Type:=xlExpression, Formula1:= _
"=AND(SEARCH(""CTC"",$S2),$I2>=10000,$N2>=30)"
Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
With Selection.FormatConditions(1).Interior
.PatternColorIndex = xlAutomatic
.Color = 255
.TintAndShade = 0
End With
Selection.FormatConditions(1).StopIfTrue = False
不幸的是,我发现有时候不是“CTC”,而是需要搜索“关键关闭”或“关键tc”等等。有没有办法可以轻松修改SEARCH功能以包含更多标准,也许是通过创建一个数组?
我的恐惧完全在改变我的写作方式,因为我在许多其他地方也使用了SEARCH功能。我希望能够在我的代码中进行简单的查找和替换,以防止进行许多更改......
感谢您的帮助 -