I am trying to do a AutoFill
from the last row to one row below. So LastRow
to LastRow Offset (1)
.
I know how to find the last row in VBA, but some how I can't find a way to solve this puzzle.
I think It will look something like the following:
LastRow = Cells(Rows.Count, 2).End(xlUp).Row
LastRow2 = Cells(Rows.Count, 2).End(xlUp).Offset(1)
Range("B" & LastRow : "AA" & LastRow).Select
Range("B" & LastRow2 : "AA" & LastRow2).Autofill
If something is not clear please ask, I would appreciate any help