sreekhosh
Member
Range A1:A15 contains both numbers and text's. I need to delete the entire row which start with number.
I tried with this one but it does not work:
====================
Sub Button3_Click()
For Each cell In Range("A1:M15")
If cell > "0" Then
cell.EntireRow.Delete
End If
Next
End Sub
===============
I tried with this one but it does not work:
====================
Sub Button3_Click()
For Each cell In Range("A1:M15")
If cell > "0" Then
cell.EntireRow.Delete
End If
Next
End Sub
===============