I want to use the value in each cell in a range, in one spreadsheet to search for that cell of value in another spreadsheet.
However, if it encounters a cell of value that matches the cell "I3" then I want the macro to skip it and continue to the next cell.
Dim rng As Range, cell As Variant
Sheets("Main").Select
Set rng = Range("D3:D5")
For Each cell In rng
If cell = Range("I3") Then Stop
Else
Sheets("Filtered").Select
Cells.Find(What:=cell, After:=ActiveCell).Activate
ActiveCell.EntireRow.Select
Selection.Delete Shift:=xlUp
Next cell
End Sub