drop down menu ( list)

G

Guest

I have made a drop down list to select different (text) names. Is there a way
to make each name correspond to a different number and place that number in a
different cell

For ex.

Cell # A1 Cell # A4
Chad 2
Nick 12
Jason 118
 
P

Peo Sjoblom

Use a lookup table


=IF(A1="","",VLOOKUP(A1,$K$1:$L$20,2,0))

where you would create a 2 column table with the list you are using in the
left column and the
numbers in the right column

In my example I used table in

$K$1:$L$20

you obviously need to have this in another cell as opposed to in the cell
with the dropdown
 

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