Not very familiar with excel 2000
First time i used this macro it worked on another worksheet, but not this one

Code:
Public Sub RemoveRows()
Dim SearchString As String
Dim i As LongName:  Excel.jpg
Views: 236
Size:  12.5 KB
SearchString = "Authorization"
i = 1

Do While i <= ThisWorkbook.ActiveSheet.Range("A1").CurrentRegion.Rows.Count
Debug.Print ThisWorkbook.ActiveSheet.Cells(i, 3).Text
    If InStr(1, ThisWorkbook.ActiveSheet.Cells(i, 3).Text, SearchString, vbTextCompare) > 0 Then
        ThisWorkbook.ActiveSheet.Cells(i, 1).EntireRow.Delete
    Else
        i = i + 1
    End If
Loop

Debug giving these results
33
39
free
44
35
what is the problem ?