I've code I want to apply to about 1,200 plus rows. Works fine for the first row I want it to apply to, if AC2 >= 1
then the row 2:2 changed to red, I want to repeat if AC3 >=1
then 3:3 red and so on...
Sub Colour()
Rows("2:2").Select
Range("U2").Activate
Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=$AC$2>=1"
Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
With Selection.FormatConditions(1).Interior
.PatternColorIndex = xlAutomatic
.Color = 255
.TintAndShade = 0
End With
Selection.FormatConditions(1).StopIfTrue = False
End Sub