Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I copy a range of cells from a template sheet and paste them during
the creation of other sheets. The range is defined by a named range. Public Sub InsStatRows() 'Insert Statistics Footer Dim mySheet Dim mySpace As Range Set mySheet = ActiveSheet Range("a1").End(xlDown).Offset(2, 0).Select Set mySpace = Selection Worksheets("Template").Range("statRows").Names ActiveSheet.Paste Destination:=ActiveSheet.Range(mySpace.Address) End Sub This works great but I also need to copy Named Ranges that are within the source range. (some of the copied cells have names in them) Is it possible to copy named ranges from one sheet to another? If yes, suggestions please These names are "local" Robert |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
trying to copy a worksheet containing named ranges to anotherworksheet | Excel Worksheet Functions | |||
Copy worksheet with named ranges to new workbook and keep names | Excel Worksheet Functions | |||
Copy data in named ranges to a newer version of the same template to identical ranges | Excel Programming | |||
copy the valued of named ranges | Excel Programming | |||
copy all named ranges in a sheet to seperate sheets | Excel Programming |