D
Dan R.
I'm using this simple code to copy and paste values from one sheet to
another but for some reason I can't figure out how to move the
DestRange1 down one row. I'm pretty sure it's Offset but I can't
figure out where to put it...
LC1 = Lastcol(WB2.Sheets(2)) + 1
Set SourceRange = WB1.Columns("A").Columns("F:K")
Set DestRange1 = WB2.Sheets(2).Columns(LC1)
SourceRange.Copy DestRange1
Thanks,
-- Dan
another but for some reason I can't figure out how to move the
DestRange1 down one row. I'm pretty sure it's Offset but I can't
figure out where to put it...
LC1 = Lastcol(WB2.Sheets(2)) + 1
Set SourceRange = WB1.Columns("A").Columns("F:K")
Set DestRange1 = WB2.Sheets(2).Columns(LC1)
SourceRange.Copy DestRange1
Thanks,
-- Dan