View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Skibee Skibee is offline
external usenet poster
 
Posts: 24
Default Conditional formulas with multiple possibilites

I forgot to add that I have 13 ranges to include. I have tried
=IF(L7<=15,1,IF(L7<15.5,2.5,IF(L7<16,4,IF(L7<17,5. 5)))) etc. but it will
only let me nest 7 IFs and I need 13 in total.

"Skibee" wrote:

I need to construct a formula with the following parameters:

If L7 is
<=15 return 1.0
between 15.1 and 15.4 return 2.5
between 15.5 and 15.9 return 4.0
between 16.0 and 16.9 return 5.5
between 17.0 and 17.9 return 6.5
between 18.0 and 18.9 return 7.0

and so on.

Any help appreciated.