Delete rows automatically

H

hol

Is there a code to delete rows automatically once it reaches row 100. But to
delete from row 1.
 
D

Don Guillett

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
 
H

hol

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?
 
Top