Is there a formula or method of keeping an exact amount of rows (i.e. 100 rows always) and counting inside said rows - regardless of inserts or deletes? I've tried absolute references, but the inserts and deletes affect it.
The only method that I have now is to rewrite the formulas after all the inserts and deletes have been completed.
Sub ExactRowsCount()
'
' ExactRowsCount Macro
'
Range("H1").Select
ActiveCell.FormulaR1C1 = "=COUNTA(R[4]C:R[104]C)"
Range("H2").Select
End Sub