Posted to microsoft.public.excel.programming
|
|
Copying data
Thanks Ron,
That solved my problem!
"Ron de Bruin" wrote:
Try this to copy from Sheet1 to sheet2 A1
Sheets("Sheet1").Range("A1:A" & Range( _
"A" & Rows.Count).End(xlUp).Row).Copy Sheets("Sheet2").Range("A1")
--
Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm
"RB" wrote in message ...
Hi All,
I want to copy data from one sheet to another. I have to select Col A and
as many rows that have data in it (from A1 to A32), but this has to be
dynamic becuase the rows might change. I then have to copy these selected
cells to sheet 1. I nedd the code for this. I knw the solution is simple but
cajt seem to figure out. Can somebody pls help. It will be appreciated.
|