View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Find last row of data and delete empty rows

cells(rows.count,1).End(xlup) _
.offset(1,0).Resize(100).Entirerow.Delete

--
Regards,
Tom Ogilvy

"Pat" wrote in message
...
I need a macro that will find the last row in colA containing data and

then
delete the next 100 empty rows.
Thank you if you can help.
Pat