ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Tranferring names defined in one excel workbook to another workboo (https://www.excelbanter.com/excel-discussion-misc-queries/97033-tranferring-names-defined-one-excel-workbook-another-workboo.html)

Dinesh

Tranferring names defined in one excel workbook to another workboo
 
I defined some names using name manager in One Excel workbook . i want to
transfer all the namespaces into another workbook.
How can i do that ?

JLatham

Tranferring names defined in one excel workbook to another workboo
 
Both workbooks need to have same sheet names in order for this to work
without error when you try to reference the named ranges in the second
workbook. Put this code in the workbook with the names already defined.
Open up the second workbook and then run the macro:

Sub CopyNamedNamedRanges()
Dim AnyName As Object

For Each AnyName In ThisWorkbook.Names
Workbooks("Book2.xls").Names.Add AnyName.Name, AnyName.RefersTo, True
Next

End Sub

Change "Book2.xls" to the name of the workbook you need to move the named
ranges into.


"Dinesh" wrote:

I defined some names using name manager in One Excel workbook . i want to
transfer all the namespaces into another workbook.
How can i do that ?



All times are GMT +1. The time now is 11:40 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com