Hi,

I'm trying to correct a macro that autofills the formulae held in cells
A1 and A2 and fills all the way along to CZ2.

This is what I have already.

With Worksheets("For Report")
.Range("A" & CStr(prev_points + 1)).AutoFill _
Destination:=.Range("A" & CStr(prev_points + 1) & ":A" & _
CStr(100 + 1)), Type:=xlFillDefault
End With


It runs, but it's filling vertical instead of horizontal. I've tried
changing the range from A to 1 so that it does the row instead of the
column, but the sub won't run when I change it.

Any ideas how I can:
(a) get this to fill along the row instead of down the column.
(b) get it to include row 2 as well as row 1.

Any help would be brilliant!

Thanks
D