PC Review


Reply
Thread Tools Rate Thread

Can't located named range

 
 
rp
Guest
Posts: n/a
 
      20th Sep 2010
Hello,
one of my colleagues at work recently gave me an Excel spreadsheet,
which was developed by someone who left the company many years ago,
and asked me to modify the values contained in a cell data-validation
list. Unfortunately, I can't locate either the corresponding named
range in the current spreadsheet, or the list in the associated
spreadsheet.

Here's a more detailed description of my problem.

Cell D1 has a data-validation list whose four values are, say, "AAA",
"BBB", "CCC" and "DDD", and whose data-validation source is

=Named_range1

If I select Named_range1 in the named-ranged selection menu to the
right of the Excel Name Box, Excel does not display any particular
cell or cell range, as one would normally expect. Furthermore, if I
select Insert->Name->Define and click on Named_range1, I can see that
it refers to =Other_Spreadsheet!$K$1:$K$4

Unfortunately, I don't have a copy of Other_Spreadsheet.

My question is as follows: if neither the named range in the current
spreadsheet nor the external spreadsheet exist anymore, where does
Excel retrieve the list values ("AAA", "BBB", and "CCC") from?

If I create a new data-validated cell and make it use Named_range1 as
data source, Excel displays the source's values without any
difficulty. But where did it find them, given the fact that the source
does not exist anymore?

Many thanks.

pr

 
Reply With Quote
 
 
 
 
Pete_UK
Guest
Posts: n/a
 
      20th Sep 2010
What exactly does it have in the Refers to box?

If it does show =Other_Spreadsheet!$K$1:$K$4, then that is a sheet in
the same workbook, which has perhaps been hidden and you can't see it.
Just unhide the sheet.

Hope this helps.

Pete

On Sep 20, 4:41*pm, rp <phi...@free.fr> wrote:
> Hello,
> one of my colleagues at work recently gave me an Excel spreadsheet,
> which was developed by someone who left the company many years ago,
> and asked me to modify the values contained in a cell data-validation
> list. Unfortunately, I can't locate either the corresponding named
> range in the current spreadsheet, or the list in the associated
> spreadsheet.
>
> Here's a more detailed description of my problem.
>
> Cell D1 has a data-validation list whose four values are, say, "AAA",
> "BBB", "CCC" and "DDD", and whose data-validation source is
>
> =Named_range1
>
> If I select Named_range1 in the named-ranged selection menu to the
> right of the Excel Name Box, Excel does not display any particular
> cell or cell range, as one would normally expect. Furthermore, if I
> select Insert->Name->Define and click on Named_range1, I can see that
> it refers to =Other_Spreadsheet!$K$1:$K$4
>
> Unfortunately, I don't have a copy of Other_Spreadsheet.
>
> My question is as follows: if neither the named range in the current
> spreadsheet nor the external spreadsheet exist anymore, where does
> Excel retrieve the list values ("AAA", "BBB", and "CCC") from?
>
> If I create a new data-validated cell and make it use Named_range1 as
> data source, Excel displays the source's values without any
> difficulty. But where did it find them, given the fact that the source
> does not exist anymore?
>
> Many thanks.
>
> pr


 
Reply With Quote
 
Jim Rech
Guest
Posts: n/a
 
      20th Sep 2010
If the sheet Other_Spreadsheet is "very hidden" you have to unhide it with
code. This will also work if it's normally hidden. Run this in the
Immediate window in the VBE:

worksheets("Other_Spreadsheet").visible=xlSheetVisible

"rp" <(E-Mail Removed)> wrote in message
news:adb615da-0fa4-4069-9d0f-(E-Mail Removed)...
> Hello,
> one of my colleagues at work recently gave me an Excel spreadsheet,
> which was developed by someone who left the company many years ago,
> and asked me to modify the values contained in a cell data-validation
> list. Unfortunately, I can't locate either the corresponding named
> range in the current spreadsheet, or the list in the associated
> spreadsheet.
>
> Here's a more detailed description of my problem.
>
> Cell D1 has a data-validation list whose four values are, say, "AAA",
> "BBB", "CCC" and "DDD", and whose data-validation source is
>
> =Named_range1
>
> If I select Named_range1 in the named-ranged selection menu to the
> right of the Excel Name Box, Excel does not display any particular
> cell or cell range, as one would normally expect. Furthermore, if I
> select Insert->Name->Define and click on Named_range1, I can see that
> it refers to =Other_Spreadsheet!$K$1:$K$4
>
> Unfortunately, I don't have a copy of Other_Spreadsheet.
>
> My question is as follows: if neither the named range in the current
> spreadsheet nor the external spreadsheet exist anymore, where does
> Excel retrieve the list values ("AAA", "BBB", and "CCC") from?
>
> If I create a new data-validated cell and make it use Named_range1 as
> data source, Excel displays the source's values without any
> difficulty. But where did it find them, given the fact that the source
> does not exist anymore?
>
> Many thanks.
>
> pr
>


 
Reply With Quote
 
Don Guillett Excel MVP
Guest
Posts: n/a
 
      20th Sep 2010
On Sep 20, 11:37*am, "Jim Rech" <n...@abc.com> wrote:
> If the sheet Other_Spreadsheet is "very hidden" you have to unhide it with
> code. *This will also work if it's normally hidden. *Run this in the
> Immediate window in the VBE:
>
> worksheets("Other_Spreadsheet").visible=xlSheetVisible
>
> "rp" <phi...@free.fr> wrote in message
>
> news:adb615da-0fa4-4069-9d0f-(E-Mail Removed)...
>
>
>
> > Hello,
> > one of my colleagues at work recently gave me an Excel spreadsheet,
> > which was developed by someone who left the company many years ago,
> > and asked me to modify the values contained in a cell data-validation
> > list. Unfortunately, I can't locate either the corresponding named
> > range in the current spreadsheet, or the list in the associated
> > spreadsheet.

>
> > Here's a more detailed description of my problem.

>
> > Cell D1 has a data-validation list whose four values are, say, "AAA",
> > "BBB", "CCC" and "DDD", and whose data-validation source is

>
> > =Named_range1

>
> > If I select Named_range1 in the named-ranged selection menu to the
> > right of the Excel Name Box, Excel does not display any particular
> > cell or cell range, as one would normally expect. Furthermore, if I
> > select Insert->Name->Define and click on Named_range1, I can see that
> > it refers to =Other_Spreadsheet!$K$1:$K$4

>
> > Unfortunately, I don't have a copy of Other_Spreadsheet.

>
> > My question is as follows: if neither the named range in the current
> > spreadsheet nor the external spreadsheet exist anymore, where does
> > Excel retrieve the list values ("AAA", "BBB", and "CCC") from?

>
> > If I create a new data-validated cell and make it use Named_range1 as
> > data source, Excel displays the source's values without any
> > difficulty. But where did it find them, given the fact that the source
> > does not exist anymore?

>
> > Many thanks.

>
> > pr- Hide quoted text -

>
> - Show quoted text -


If all else fails, send me the file.
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Selecting a named range, the name of the named range is in a cell Luc Microsoft Excel Programming 6 13th Jan 2010 07:35 PM
inserting a named range into new cells based on a named cell =?Utf-8?B?UGV0ZXIgUy4=?= Microsoft Excel Misc 1 4th Jun 2006 03:53 AM
Calling strong-named assembly, located on a server, from VBA b.van.dodeweerd@gmail.com Microsoft Dot NET 0 31st Oct 2005 08:36 AM
How Do You Call Several Named Ranges From A Named Range Minitman Microsoft Excel Worksheet Functions 14 24th Mar 2004 11:18 PM
How Do You Call Several Named Ranges From A Named Range Minitman Microsoft Excel Programming 13 24th Mar 2004 11:18 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:46 AM.