Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It is possible to define a range in one work book then copy it and paste it
into another work book without having to redefine the range? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Rich,
The following will copy and paste from one book to another. Just substitute the correct names for the workbooks, worksheets, and range name. Note that there is no select instruction needed. ''''''''''''''''' Workbooks("MyBook1.xls").Sheets("MySheet1").Range( "MyRange").Copy _ Destination:=Workbooks("Book2").Sheets("Sheet1").R ange("B5") '''''''''''''''''' hth -- steveB (Remove 'NOSPAM' from email address if contacting me direct) "Rich Cooper" wrote in message ... It is possible to define a range in one work book then copy it and paste it into another work book without having to redefine the range? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Create a new worksheet. Use Insert | Name Paste... | Paste List
button to get all the names into that worksheet starting with cell A1. Move the worksheet over to the new workbook. Use the code I posted in the discussion at http://www.mrexcel.com/board2/viewtopic.php?p=431798# 431798 to create the names in the new workbook. -- Regards, Tushar Mehta www.tushar-mehta.com Excel, PowerPoint, and VBA add-ins, tutorials Custom MS Office productivity solutions In article , says... It is possible to define a range in one work book then copy it and paste it into another work book without having to redefine the range? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
converting email address names in a range of cells to real names | Excel Worksheet Functions | |||
How to Delete blanks between a range and populate only the names inthe given range | Excel Discussion (Misc queries) | |||
COPYING FORMULA CONTAINING NAMES/RELATIVE RANGE NAMES | Excel Discussion (Misc queries) | |||
Selecting range in list of range names depending on a cell informa | Excel Discussion (Misc queries) | |||
range names | Excel Worksheet Functions |