Aim
Copy column from one worksheet to another.
Issue & Example
I want to copy a column from S1 to S2 but I want the pasting to start on the second row. I can make it copy to the first cell/row and down but not the second. The code example works for the first four lines, however when I change B1 to B2 it fails to I've also tried adding a Range but to no avail.
Code:
Dim s1 As Worksheet, s2 As Worksheet
Set s1 = Sheets("BatchData")
Set s2 = Sheets("Portal_Aligned")
s1.Range("A:A" & LastRow).Copy s2.Range("B1")
s1.Range("A:A" & LastRow).Copy s2.Range("B2:B" & LastRow)
Ref: