Hi,
I'm currently using the following code for autofilling a formula via a macro:
Dim rng As Range
Set rng = ActiveSheet.Range("B9")
rng.AutoFill Range(rng, rng.Offset(0, -1).End(xlDown).Offset(0, 1))
Basically, I run a standard weekly report and use a macro to automatically insert...