Hard to believe I am here for this, but.... here I am
Just trying to AutoFill xlFillSeries from Column A to LastColumn
Here is where I'm at (I think I'm close?)
What I'm trying to accomplish is to simply put numbers across the tops of my column names...(changing the sheet to R1C1 wont' work for this project.)
And, as I'm sure most of you reading this will know - I'm getting an AutoFill Method of Range Error
Help?
Thanks everyone...
Just trying to AutoFill xlFillSeries from Column A to LastColumn
Here is where I'm at (I think I'm close?)
Code:
Application.ScreenUpdating = False
With Sheet1
Lc = .Cells(1, .Columns.Count).End(xlToLeft).Column
.Rows("1:1").Insert
.Range("A1") = 1
.Cells(1, Lc).AutoFill , xlFillSeries
.Range("A1").Select
End With
Application.ScreenUpdating = True
What I'm trying to accomplish is to simply put numbers across the tops of my column names...(changing the sheet to R1C1 wont' work for this project.)
And, as I'm sure most of you reading this will know - I'm getting an AutoFill Method of Range Error
Help?
Thanks everyone...