Hello everyone! Hope all is well.
I have this formula I created but it isnt outputting the result I need. =IF(E2<=4.99,"0-4",IF(AND(E2>=5,E2<=6.99,"5-6"),IF(AND(E2>=7,E2<=8.99,"7-8"),IF(AND(E2>=9,E2<=10.99,"9-10"),IF(AND(E2>=11,E2<=12.99,"11-12"),IF(AND(E2>=13,E2<=14.99,"13-14"),IF(E2>=15,"15+")))))))
So, I am trying to say if the number is greater than or equal to 5 but also less than or equal to 6.99 to output 5-6. Currently my formula is only picking up on the logic of the first part, so my outputs are 0-4 and a bunch of Falses. I just want my outputs to be 0-4, 5-6, 7-8 for the respective number that fall into each category.
Do I need to use IFS instead or how can I achieve my desired result?
Thank you well in advance!
I have this formula I created but it isnt outputting the result I need. =IF(E2<=4.99,"0-4",IF(AND(E2>=5,E2<=6.99,"5-6"),IF(AND(E2>=7,E2<=8.99,"7-8"),IF(AND(E2>=9,E2<=10.99,"9-10"),IF(AND(E2>=11,E2<=12.99,"11-12"),IF(AND(E2>=13,E2<=14.99,"13-14"),IF(E2>=15,"15+")))))))
So, I am trying to say if the number is greater than or equal to 5 but also less than or equal to 6.99 to output 5-6. Currently my formula is only picking up on the logic of the first part, so my outputs are 0-4 and a bunch of Falses. I just want my outputs to be 0-4, 5-6, 7-8 for the respective number that fall into each category.
Do I need to use IFS instead or how can I achieve my desired result?
Thank you well in advance!