Numbers: How to write between in an IF statement

numbers

I can't get the following formula to work in Apple's Numbers.app. I need the second IF to be BETWEEN 33.3% AND 66.6%.

This is what I have tried but it does not work:

IF(D≥66.6%,"High","")&IF(D>33.3%<66.6%,"Medium","")&IF(D≤33.3%,"Low","")

Thank you for any help!

Best Answer

Try this way:

IF(D≥66.6%,"High",IF(D<=33.3%,"Low","Medium"))

enter image description here

enter image description here