Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Programmatically, how do I get all of the named ranges in the workbook to be
displayed on my Sheet1. I have named ranges that are workbook specific and worksheet specific. I'd like to know the sheet that they are specific to if they are present. Thanks, |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub listnames()
Application.Calculation = xlManual For Each n In ThisWorkbook.Names lr = Cells(Rows.Count, "a").End(xlUp).Row + 1 Cells(lr, 1) = n.Name Cells(lr, 2) = n Next Application.Calculation = xlAutomatic End Sub -- Don Guillett SalesAid Software "Barb Reinhardt" wrote in message ... Programmatically, how do I get all of the named ranges in the workbook to be displayed on my Sheet1. I have named ranges that are workbook specific and worksheet specific. I'd like to know the sheet that they are specific to if they are present. Thanks, |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Anything after the ! in column 2 is not being displayed. What needs to be
changed? Thanks "Don Guillett" wrote: Sub listnames() Application.Calculation = xlManual For Each n In ThisWorkbook.Names lr = Cells(Rows.Count, "a").End(xlUp).Row + 1 Cells(lr, 1) = n.Name Cells(lr, 2) = n Next Application.Calculation = xlAutomatic End Sub -- Don Guillett SalesAid Software "Barb Reinhardt" wrote in message ... Programmatically, how do I get all of the named ranges in the workbook to be displayed on my Sheet1. I have named ranges that are workbook specific and worksheet specific. I'd like to know the sheet that they are specific to if they are present. Thanks, |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Barb,
Get a hold of Jan Karel Pieterse's Namemanager utility http://www.jkp-ads.com/OfficeMarketPlaceNM-EN.asp -- HTH Bob Phillips (replace somewhere in email address with gmail if mailing direct) "Barb Reinhardt" wrote in message ... Programmatically, how do I get all of the named ranges in the workbook to be displayed on my Sheet1. I have named ranges that are workbook specific and worksheet specific. I'd like to know the sheet that they are specific to if they are present. Thanks, |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Transfering 100 named ranges to an another workbook | Excel Discussion (Misc queries) | |||
Phantom named ranges in a workbook? | Excel Discussion (Misc queries) | |||
Linking to named ranges in another workbook | Excel Discussion (Misc queries) | |||
Checking for named ranges in a workbook | Excel Programming | |||
SQL query a workbook - too many named ranges? | Excel Programming |