I\'m trying to color an entire row if two cells in that row have the same value.
For i = 2 To LastRow If Worksheets(\"Request Results\").Cells(i, 4).Valu
I used something like this on a similar row highlighting problem.
For Each Rng in SomeRange.Columns(1).Cells Rng.EntireRow.Interior.Color = 5296274 Next