I have a spreadsheet cell (F6) with the value BodyMassIndex (BMI) and I want to create a function that translates the BMI value to Overweight, Normal, etc.
I’ve tried to use this function but it is only returning a False value:
IF(F6>40, ,“Morbidly Obese”) =IF(AND(F6>35,F6<39.9), “Severely Obese”) =IF(AND(F6>30,F6<34.9), “Moderately Obese”) =IF(AND(F6>25,F6<29.9), “Overweight”) =IF(AND(F6>18.5,F6<24.9), “Normal”) =IF(AND(F6>16, F6<18.4), “Underweight”) =IF(AND(F6<16.1), “Severly Underweight”)
Not sure what I’m doing wrong. Help would be appreciated.
Thanks