I have the following which attempts to keep only text, everything else should be deleted, but I can't get it working. Any suggestions are most appreciated
If ActiveCell.Text > 0 And IsNumeric(ActiveCell.Value) Then
Selection.EntireRow.Delete
ElseIf ActiveCell.Text > 0 Then
ActiveCell.Offset(1, 0).Select
End If
If ActiveCell.Text > 0 And IsNumeric(ActiveCell.Value) Then
Selection.EntireRow.Delete
ElseIf ActiveCell.Text > 0 Then
ActiveCell.Offset(1, 0).Select
End If