E
Ed Davis
I would like to copy data from 1 column in sheet1 starting at row 12 to the
first empty column starting at row 8 in sheet2.
first empty column starting at row 8 in sheet2.
sheets("sheet1").cells(12,sc).resize(slr).copy .cells(8,dlc)sheets("sheet1").cells(12,sc).resize(slr) copy .cells(8,dlc)
Shane Devenshire said:Hi,
The question is not clear - looking for the first blank column starting in
what column?
Assuming you mean starting in Column A of Sheet2 then this one line will
do
it while you are on sheet1.
Range("A12:A" & [A12].End(xlDown).Row).Copy
Sheet2.[A8].End(xlToRight).Offset(0, 1)
--
If this helps, please click the Yes button.
Cheers,
Shane Devenshire
Ed Davis said:I would like to copy data from 1 column in sheet1 starting at row 12 to
the
first empty column starting at row 8 in sheet2.