Code:
output.Range("BF2").AutoFill destination:=output.Range("BF2:BF" & Cells(Rows.Count, "H").End(xlUp).Row)
The code above looks up to Column H and autofills Column BF with formula up to Rows of Column H that has value. This code is triggered by another code which fills up Column H. If for example Column H had 1000 rows, Column BF will have 1000 rows as well with formulas.
If, Column H had lesser rows on the next fill up - the 1000 rows of BF will still have the formulas. Is there any way to remove these formulas through VBA?