dropdown value

M

Mark Scott

Hi,

I am trying to create a worksheet formula which when a user select a value
from a dropdown box, the resut in the adjacent cell is affected differently
depending on that value. For example if any value between 1 and 5 is
selected, the result is .1, if any value between 6 and 10 is selected, the
result is .2, and if any value between 11 and 15 is selected in the
dropdown, the result is .3


Thanks,
 
M

Max

Assuming the selection is made in cell A1,

Try in B1:

=IF(AND(A1>=1,A1<6),0.1,IF(AND(A1>=6,A1<10),0.2,IF(AND(A1>=10,A1<15),0.3,"Ou
t-of-range")))
 

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