Try this
http://www.rondebruin.nl/specialcells.htm
Change this line
With Columns("A") ' You can also use a range like this Range("A1:A8000")
To
With Range("H2:H" & Rows.Count)
If you want to start in Row 2
--
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
"manfareed" wrote in message ...
Hi ,
I need to delete any row which has a blank cell in Column H. But I do not
want to delete the first row because this will have a "Title" even though
Column H is blank.
Thanks