Simple Formula to delete every other row

  • Thread starter Thread starter Sandman
  • Start date Start date
S

Sandman

Is there a simple formula that will allow me to delete every other row? any
help would be appreciated
 
You can't delete rows with a formula. You need a macro something like this

for i = cells(rows.count,"a").end(xlup).row,"a") to 2 step -2
rows(i).delete
next
 
Thanks

--



You can't delete rows with a formula. You need a macro something like this

for i = cells(rows.count,"a").end(xlup).row,"a") to 2 step -2
rows(i).delete
next
 
Back
Top