lists from other lists in excel

L

Lew

I want to make a drop down list from a named range (WO) when the other
conditions of the existing DIRECT statement are not true. The existing cell
reverence is :"DIRECT(VLOOKUP(A14,TRCLookup,2,0))" I want to add a condition
that will let me select from the list "WO" if the value in A14 is not in in
the "TRCLookup" . Any sugestions?
 
B

Biff

Hi!

What is "DIRECT"? Never heard of it. Must be a UDF?

Try this:

=IF(COUNTIF(INDEX(TRCLookup,,1),A14),VLOOKUP(A14,TRCLookup,2,0),VLOOKUP(A14,WO,2,0))

Biff
 
L

Lew

Oops, my mistake: The Data validation statement I am using
is:=INDIRECT(VLOOKUP(A14,TRCLOOKUP,2,0)). The IF Count you sugessted does not
work in my spreadsheet, I still recieve a blank drop down list if the value
in A14 is not in the TRCLookup list.
 
B

Biff

Yes, I missed that!

Biff

Max said:
In the sample file's Sheet1,
think the letter "C" in E4 needs to be revised a little to "Cx",
to enable the DV in A1 to work when we select "3" from the DV in A14
(Think "C" itself as a named range is not allowed, so you used "Cx" <g>)
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top