try
Sub test()
Dim i As Long, rng As Range, x As Range
With ActiveSheet.UsedRange
.Interior.ColorIndex = xlNone
For i = 1 To .Rows.Count
On Error Resume Next
Set rng = .Rows(i).SpecialCells(2)
On Error GoTo 0
If Not rng Is Nothing Then
If x Is Nothing Then
Set x = rng(1).Resize(, .Columns.Count) _
.SpecialCells(4).Areas(1)
Else
Set x = Union(x, rng(1).Resize(, _
.Columns.Count).SpecialCells(4).Areas(1))
End If
End If
Next
If Not x Is Nothing Then x.Interior.ColorIndex = 3
End With
Set rng = Nothing
Set x = Nothing
End Sub
Bookmarks