Hi Asiva,
See if this is what you want - If it is then uncomment the penultimate line and delete the last line.
What will happen is that it will turn all of the entries that would be deleted red
Sub Asiva(): Dim s As Integer, p As Integer, c As Integer, q As Long, r As Long
s = Rows("2:2").Find("Store").Column: p = Rows("1:1").Find("Processor").Column
c = Rows("1:1").Find("Card Type").Column
r = 1: Do Until WorksheetFunction.CountA(Rows(r)) = 0: r = r + 1: Loop
For q = 2 To r
If Cells(q, s) = 2861 Or Cells(q, c) = "PLUS" Or Cells(q, p) = "DXJ8934" Or _
Cells(q, p) = "MXA8484" Or Cells(q, p) = "RCF959" Then
'Cells(q, 1).EntireRow.Delete Shift:=xlUp: End If: Next q: End Sub
Cells(q, 1).EntireRow.Font.ColorIndex = 3: End If: Next q: End Sub
Bookmarks