VB Code:
  1. Do until lngLoop>100
  2.     if len(cells(lngLoop,6))=0 then
  3.        cells(lngloop,1).entirerow.delete
  4.     else
  5.         lngloop=lngloop+1
  6.     end if
  7. loop
  8. next
Something like that. Experiment.
Please note that this should work in vba (excel), it also does need to be assigned to the right objects which you will need to set up before calling.


Vince