help with formula

  • Thread starter Thread starter ManchVegasMarty
  • Start date Start date
M

ManchVegasMarty

Thanks for reading

In Cell (A1) I have a drop down menu that has a validated series of billing
codes: None, 2010, 2011, 2012, 3010, 3011, 3012

In Cell (A2) I would like to assign a number value that applies to each
billing code in (A1). None = 0, 2010 =27.5, 2011 =100, 2012 =12.50,
3010=27.5, 3011 =100, 3012 =12.5.

So in Cell (A2), I need a forumla that will read cell (A1) once the value is
selected from the drop down menu and assign the correct value (above) to cell
(A2)

Is this possible?

Signed,

Freezing in New Hampshire
 
=LOOKUP(A1,{"None",2010,2011,2012,3010,2011,3012},{0,27.5,100,12.5,27.5,100,12.5})

entered in A2


Gord Dibben MS Excel MVP
 
Thanks for the feedback.

Note RD's advice about using a table and VLOOKUP.

That would give you more flexibility for making changes if need be.


Gord
 
Back
Top