I thought the following should work, BUT IT DOESN'T.
Can somone "point-out" WHY it doesn't? - TIA,
Sub Foo()
With Selection ' Range currently highlighted - example A3:A50
For Each cell In Selection
If .Interior.ColorIndex = 6 Then
cell.EntireRow.Delete
End If
Next cell
End With
End Sub
Bookmarks