How to assign values to a cell based on values in another cell?

J

Joao Lopes

I'm trying to figure out a way to automaticcaly assign values to a cell (B3)
based on values typed on cell A3. Example:
A3 values (typed) = 10%, 30%, 50%, 70%, 100%
B3 values (automatically assigned) = min, low, medium, high, max

Tks for the help.
 
G

Gord Dibben

=LOOKUP(A3,{0.1,0.3,0.5,0.7,1},{"min","low","medium","high","max"})

Will you have values that aren't exactly 10, 30, 50, 70 or 100?

If so, how do you want to deal with them?


Gord Dibben MS Excel MVP


On Wed, 5 Dec 2007 11:44:00 -0800, Joao Lopes <Joao
 

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