View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
John C[_2_] John C[_2_] is offline
external usenet poster
 
Posts: 1,358
Default Nested IF with = and <= choices

=IF(B14+B15<25,1,IF(B14+B15<40,2,IF(B14+B15<75,3,5 )))
This formula now states if B14+B15 is less than 25, show 1, else
if B14+B15 is less than 40, show 2 (note: it has already resolved for values
under 25, so you don't need to check for that again). And so forth.
--
John C


"Clark" wrote:

Here is the formula I am trying to make work:
=IF(B14+B15<25,1,IF(B14+B15=25<40,2,IF(B14+B15=4 0<75,3,IF(B14+B15=75,5))))

B14 and B15 values change, and I want to return a number if the value of
B14+B15 falls within those given parameters. As shown, it gives me a FALSE
value if the sum of B14+B15 is over 25.