Copying Data of A Named Range into Another Worksheet

rommelq

New Member
Joined
Aug 26, 2002
Messages
47
Hi everyone. I have a simple query. Is there a simple way of copying the data of a named range into another worksheet? Thanks in advance.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hi

As demonstration using paste special (you can of course use regular paste too):
Rich (BB code):
Call Sheet1.Range("your_name_here").Copy
Call Sheet2.PasteSpecial(Paste:=xlValues)
Application.CutCopyMode = False
 
Upvote 0
Hi Jon, thanks for the reply. I wasn't thinking clearly when i post the thread. hahaha. Let me add a few complexities. I have an opened source workbook with named ranges, say, clientsA, clientsB, clientsC. I opened another destination workbook. Instead of copying the data using the copy.paste.value., is there a way wherein in the destination workbook, i just can just call the named range and the vba will automatically copy from the source workbook and paste value them to the destination workbook?
 
Upvote 0

Forum statistics

Threads
1,223,903
Messages
6,175,289
Members
452,631
Latest member
a_potato

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