Still having trouble.
Column A is (A2:A130), ascending, and is my Vendor list and is named
"VendorList" and resides on a worksheet named "Lists".
Column C (worksheet named "Lists") contains the addresses to the Vendors in
column A and are aligned by rows.
G12, on a worksheet named Purchase Orders, is a drop down list and is tied
to "VendorList" on the worksheet named "Lists".
When I make a selection in G12 (worksheet named "Purchase Orders"), I want
G14 (same worksheet) to display the appropriate address.
I am thankful for all your help.
> > Of course if column A is sorted in Ascending order, then you could use the
> > Vlookup function.
[quoted text clipped - 18 lines]
> > > if (G12=A3 then C3)...or if (G12=A4 then C4) and so on as many as 30
> > > times.
Max - 08 May 2008 20:06 GMT
As responded in your new posting
You could also try index/match ..
In G14:
=IF(G12="","",INDEX(Lists!$C$2:$C$130,MATCH(G12,VendorList,0)))

Signature
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
RJJ - 09 May 2008 09:56 GMT
Thank You! This worked perfectly.
> As responded in your new posting
>
> You could also try index/match ..
> In G14:
> =IF(G12="","",INDEX(Lists!$C$2:$C$130,MATCH(G12,VendorList,0)))
Max - 09 May 2008 11:41 GMT
Welcome, glad it helped.

Signature
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
> Thank You! This worked perfectly.