Sub test()
Dim sh As Worksheet
Set sh = Worksheets("Sheet1")
'loop down column A
rowID = 1
While sh.Cells(rowID, 1) <> ""
'Remove A to Z
For i = 65 To 90
a = Replace(sh.Cells(rowID, 1), Chr(i), "")
sh.Cells(rowID, 1) = a
Next i
'Remove a to z
For i = 97 To 122
a = Replace(sh.Cells(rowID, 1), Chr(i), "")
sh.Cells(rowID, 1) = a
Next i
rowID = rowID + 1
Wend
End Sub
Selection.Replace What:="......", Replacement:=""
Columns("D").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
Selection.Replace What:=" ", Replacement:=""
Cells.Find(What:="Total FNB EFT").Select
Set n11 = Selection
Columns("C").Replace What:="Count......*", Replacement:=""
Selection.Offset(, 3).Select
Selection.FormulaR1C1 = "=SUBSTITUTE(RC[-1],LEFT(RC[-1],3),"""")-0"
Selection.Copy
Selection.Offset(, -1).Select
Selection.PasteSpecial Paste:=xlPasteValues
Selection.Offset(, 1).ClearContents
Set v11 = Selection