How do I delete even rows (2,4,6) in an excel?

  • Thread starter Thread starter Karthik
  • Start date Start date
K

Karthik

I have 1000 rows in a excel. I want to delete all alternative rows beginning
with 2 till 998. i dont know how to use this.

Please reply
 
Pick an un-used column and insert:
=MOD(ROW(),2) into, say Z2, and copy down

Autofilter column Z and then select rows with 0 in that column

Then delete the visible rows.
 
Back
Top