[COLOR=#008000]'Declare sheet[/COLOR]
Dim sh As Worksheet: Set sh = ActiveSheet
[COLOR=#008000]'Declare last row[/COLOR]
Dim lr As Long: lr = sh.Cells(sh.Rows.Count, "A").End(xlUp).Row
[COLOR=#008000]'Declare running row[/COLOR]
Dim r As Long
[COLOR=#008000]'Loop through rows[/COLOR]
For r = lr To 4 Step (-1)
If IsNumeric(Cells(r, 1).Value) Then
Rows(r).Delete
End If
Next r