How to create a looking based on 3 fields

D

DCHOBO

Hi,

Can someone point me in the right direction with what I want to do:

I know how to use data validation to create drop downs which is phase 1.

How do I cause a result to occur based on what was chosen

e.g.

Col A = (user chooses ABC)
Col B = 80 (because ABC was choosen)

Sheet 2 will have the 'list' to choose from, so it's got all the values
in a Column for the user to choose from.

E.g.

Col A = ABC
Col B = $90

Let me know if I haven't explained what I want to archive correctly.
 
D

DCHOBO

Dave said:
It sounds like you can use =vlookup() or =index(match()) to retrieve the
assocated value.

Put your table in another sheet (sheet2 (and hide that sheet???)).

Then use a formula like this:
=if(a1="","",vlookup(a1,sheet2!a:b,2,false))

Debra Dalgleish has lots of notes:
http://www.contextures.com/xlFunctions02.html (for =vlookup())
and
http://www.contextures.com/xlFunctions03.html (for =index(match()))
and
http://contextures.com/xlFunctions02.html#Trouble
Ah that's it!!! thanks muchly! :)
 

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