taimysho0,
Updated code. The autofilter is only there to delete rows of cells that contained "x", "y", or "null". I have changed it from a filter to a .Find loop to avoid errors. It ran successfully on your test workbook. Let me know if this works for you:
Sub tgr()
Dim strZ As String
Dim strFirst As String
Dim rngData As Range
Dim rngFound As Range
Dim rngDel As Range
Dim arrData As Variant
Dim DataIndex As Long
strZ = String(255, "z")
Set rngData = Range("A2", Cells(Rows.Count, "A").End(xlUp))
arrData = rngData.Value
For DataIndex = 1 To UBound(arrData, 1)
Select Case LCase(Left(Trim((arrData(DataIndex, 1))), 1))
Case "a": arrData(DataIndex, 1) = 1 & Mid(arrData(DataIndex, 1), 2)
Case "b": arrData(DataIndex, 1) = 2 & Mid(arrData(DataIndex, 1), 2)
Case "c": arrData(DataIndex, 1) = 4 & Mid(arrData(DataIndex, 1), 2)
Case "d": arrData(DataIndex, 1) = 5 & Mid(arrData(DataIndex, 1), 2)
Case "e": arrData(DataIndex, 1) = 7 & Mid(arrData(DataIndex, 1), 2)
Case "f": arrData(DataIndex, 1) = 9 & Mid(arrData(DataIndex, 1), 2)
Case "x", "y": arrData(DataIndex, 1) = strZ
End Select
If LCase(Left(Trim(arrData(DataIndex, 1)), 4)) = "null" Then arrData(DataIndex, 1) = strZ
Next DataIndex
With rngData
.Value = arrData
.NumberFormat = "000000"
.EntireRow.Sort .Cells, xlAscending, Header:=xlNo
Set rngFound = .Find(strZ)
If Not rngFound Is Nothing Then
strFirst = rngFound.Address
Set rngDel = rngFound
Do While Not rngFound Is Nothing
Set rngDel = Union(rngDel, rngFound)
Set rngFound = .Find(strZ, rngFound)
If rngFound.Address = strFirst Then Exit Do
Loop
rngDel.EntireRow.Delete xlShiftUp
End If
End With
End Sub
Bookmarks