Delete rows automatically

  • Thread starter Thread starter hol
  • Start date Start date
H

hol

Is there a code to delete rows automatically once it reaches row 100. But to
delete from row 1.
 
Worksheet_event code may be good for this. If you use calculate it may fire
too often. You might like a worksheet_change event that says

if target.row>=100 then rows(1).delete
 
Thank you Don,
As I delete a rows will there be less rows overall or will there always be
65,000 rows regardless whether one is deleted or not?
 
Back
Top