copypaste problem

ndendrinos

Well-known Member
Joined
Jan 17, 2003
Messages
1,694
this works
Code:
Sheets("Records").Range("columns").Copy Destination:=Sheets("Statement").Range("A1")

but when I change the range to

Code:
Sheets("Records").Range("columns").Copy Destination:=Sheets("Statement").Range("A5")

it does not ...(copy area paste area not the same...)

There are no merged cells copied ... so what is the problem?
Thanks
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).
Hello Simon,
Code:
=OFFSET(Sheet1!$A$1,0,0,COUNTA(Sheet1!$A:$A),1)

this way I use for other named ranges in this WB. What I hope to learn is how to apply this concept to cover multiple columns (non contiguous)
 
Upvote 0
not surprising Simon ... I was born that way.
If the named range is like this:
Code:
=Sheet1!$A$A,Sheet1!$C:$C,Sheet1!$O:$O
how can I make it "dynamic" so that it will only copy what rows are populated within the columns?
 
Upvote 0

Forum statistics

Threads
1,224,592
Messages
6,179,787
Members
452,942
Latest member
VijayNewtoExcel

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top