Dear All,
As a subject it sounds easy, but I have been looking on net, couldn't find multiple autofill.
I have a database in which I need to insert Autofill for multiple coding in the same column, for first coding its easy as below:
Sub Journal()
Dim LR1 As Long
LR1 = Sheets("Journal").Range("K" & Rows.Count).End(xlUp).Row
Range("B3").Formula = "30020400"
Range("B3").AutoFill Range("B3:B" & LR1)
End Sub
Suppose this coding is till 50th Row and for next blank cell in the row I am using
Range("B" & Rows.Count).End(xlUp).Offset(1).Formula = "60600050"
as this autofill must start from the 51st row till the last row as LR1.
Please help.
Bookmarks