Delete empty rows.
Hi Steve,
Try:
'=======================
Public Sub Tester02()
On Error Resume Next
Columns("B:B").SpecialCells(xlBlanks). _
EntireRow.Delete
On Error GoTo 0
End Sub
'<<=======================
Alternatively, look at using the AutoFilter featutre.
---
Regards,
Norman
"Steve" wrote in message
...
I am looking for a macro to auto-delete rows that are empty between
columns
A and N. The main column I am concerned with is B. If B? is empty, delete
the
entire row.
Thanks for your time and help,
Steve
|