Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Dynamic Named Ranges Viewing in Name Box

I just learning to set up and use dynamic named ranges, unfortunately when I
set them up using the InsertNameDefine method (giving the range a name in
the Names in Workbook box type), I noticed that the range name I established
doesn't appear in the standard name box immediately to the left of the
formula bar. This makes it difficult to confirm the range is correct. Am I
right about this fact? Is there any way around this so that I can visually
look at my range like I can when I set up a range name the old fashioned way?
Thanks everyone!
DakotaSteve
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Dynamic Named Ranges Viewing in Name Box

You are correct. Being dynamic means that it won't necessarily be the same
range at all times, so Excel doesn't store the details of the range.

You could view it by typing

=myRange

in the formula bar, and the range will be highlighted.

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)

"dakotasteve" wrote in message
...
I just learning to set up and use dynamic named ranges, unfortunately when

I
set them up using the InsertNameDefine method (giving the range a name

in
the Names in Workbook box type), I noticed that the range name I

established
doesn't appear in the standard name box immediately to the left of the
formula bar. This makes it difficult to confirm the range is correct. Am

I
right about this fact? Is there any way around this so that I can

visually
look at my range like I can when I set up a range name the old fashioned

way?
Thanks everyone!
DakotaSteve



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 320
Default Dynamic Named Ranges Viewing in Name Box

You can verify it by using F5 (Go To) and typing in the dynamic range name
and ensuring it references the right range. Or, inside the
Insert/Name/Define, when you click on the name, you'll see the range
highlighted by the border when you then click in the Refers-to box.

"dakotasteve" wrote:

I just learning to set up and use dynamic named ranges, unfortunately when I
set them up using the InsertNameDefine method (giving the range a name in
the Names in Workbook box type), I noticed that the range name I established
doesn't appear in the standard name box immediately to the left of the
formula bar. This makes it difficult to confirm the range is correct. Am I
right about this fact? Is there any way around this so that I can visually
look at my range like I can when I set up a range name the old fashioned way?
Thanks everyone!
DakotaSteve

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Dynamic Named Ranges Viewing in Name Box

Thanks Bob,
this is a great solution! I appreciate your help!
steve
--
DakotaSteve


"Bob Umlas, Excel MVP" wrote:

You can verify it by using F5 (Go To) and typing in the dynamic range name
and ensuring it references the right range. Or, inside the
Insert/Name/Define, when you click on the name, you'll see the range
highlighted by the border when you then click in the Refers-to box.

"dakotasteve" wrote:

I just learning to set up and use dynamic named ranges, unfortunately when I
set them up using the InsertNameDefine method (giving the range a name in
the Names in Workbook box type), I noticed that the range name I established
doesn't appear in the standard name box immediately to the left of the
formula bar. This makes it difficult to confirm the range is correct. Am I
right about this fact? Is there any way around this so that I can visually
look at my range like I can when I set up a range name the old fashioned way?
Thanks everyone!
DakotaSteve

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JMB JMB is offline
external usenet poster
 
Posts: 2,062
Default Dynamic Named Ranges Viewing in Name Box

I generally use a vba function to show me the dynamic named range addresses.

Function rngAddress(rng As Range) As String
rngAddress = Replace(rng.Address(True, True, xlA1, True), _
"[" & ThisWorkbook.Name & "]", "", 1, 1, vbTextCompare)
End Function

Copy into a vba module. Then enter
=rngaddress(YourRangeName)
in a cell somewhere on a worksheet.


"dakotasteve" wrote:

I just learning to set up and use dynamic named ranges, unfortunately when I
set them up using the InsertNameDefine method (giving the range a name in
the Names in Workbook box type), I noticed that the range name I established
doesn't appear in the standard name box immediately to the left of the
formula bar. This makes it difficult to confirm the range is correct. Am I
right about this fact? Is there any way around this so that I can visually
look at my range like I can when I set up a range name the old fashioned way?
Thanks everyone!
DakotaSteve



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Viewing Named Ranges Rob Moyle Excel Discussion (Misc queries) 4 June 8th 06 11:41 AM
Dynamic Named Ranges clane Excel Discussion (Misc queries) 5 October 13th 05 03:26 PM
Problem with Dynamic Named Ranges Andibevan Excel Worksheet Functions 4 October 5th 05 12:56 PM
Excel2K: Is it possible to use dynamic named ranges in custom data validation formula? Arvi Laanemets Excel Discussion (Misc queries) 0 December 2nd 04 11:29 AM
Named dynamic ranges, copied worksheets and graph source data WP Charts and Charting in Excel 1 November 28th 04 05:19 PM


All times are GMT +1. The time now is 07:27 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"