Hi Joe
This maybe what you want
Code:
If LastRow > 25 Then
For i = 2 To (LastColumn * 2 - 1) Step 2
If LastColumn > 0 Then
Columns(i + 1).Insert
Cells(1, i + 1).Value = "% of Grth"
Columns(i + 1).NumberFormat = "0%"
Columns(i + 1).ColumnWidth = 4.14
Cells(LastRow - 1, i + 1).FormulaR1C1 = "=RC[-1]/R[-13]C[-1]-1"
Cells(LastRow - 1, i + 1).Select
Selection.AutoFill Destination:=Range(Cells(LastRow - 25, i + 1), Cells(LastRow - 1, i + 1)), Type:=xlFillDefault
End If
Next i
End If
ie change
Selection.AutoFill Destination:=Range(Cells(2, i + 1), Cells(LastRow - 1, i + 1)), Type:=xlFillDefault
to
Selection.AutoFill Destination:=Range(Cells(LastRow - 25, i + 1), Cells(LastRow - 1, i + 1)), Type:=xlFillDefault
Is that it ??
MTB