deleting certain rows

  • Thread starter Thread starter Marie
  • Start date Start date
M

Marie

I have an 800 page spreadsheet where I need to delete all rows that have zero
in columns J through M. Can anyone steer me in the right direction.
 
I'd probably add a helper column

In that column I'd put

=COUNTIF(J2:M2,0) 'in column 2 for example

Copy down to the end and use autofilter to find the ones that have a value
of 4 and delete.
 
Back
Top