Unless aa a/o bb populated with a space bar this should do it.
Sub delrowsifaaempty()
lr = Cells.find(What:="*", After:=[A1], _
SearchDirection:=xlPrevious).Row
For i = lr To 4 Step -1
If Cells(i, "aa") = "" And Cells(i, "ab") = "" Then Rows(i).Delete
Next i
End Sub
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
(E-Mail Removed)
"Wanna Learn" <(E-Mail Removed)> wrote in message
news:EA279432-D30B-4706-80E0-(E-Mail Removed)...
> Hello I get a daily report and I have to delete the entire row if cell AA
> and Cell AB are empty. staring from row 4 till the end. I have been
> doing
> this manually but is there a VBA code that would make this faster.
> thanks
> in advance