Hello mtbe,
This macro will fill in the formulae in columns "C,E,G". It finds the last update date and fills in the range up to today.
Sub AutoFormulaFill()
Dim D1 As Date
Dim D2 As Date
Dim LastRow As Long
Dim NextRow As Long
D1 = "01/01/2009"
D2 = Now()
NextRow = DateDiff("d", D1, D2) + 3
LastRow = Cells(Rows.Count, "C").End(xlUp).Row
Application.ScreenUpdating = False
If LastRow > 3 Then
Range(Cells(LastRow, "C"), Cells(NextRow, "C")).FillDown
Range(Cells(LastRow, "E"), Cells(NextRow, "E")).FillDown
Range(Cells(LastRow, "G"), Cells(NextRow, "G")).FillDown
End If
Application.ScreenUpdating = True
End Sub
Bookmarks