Formula for sending feedback on an average or score?

Solved
sekouausud Posted messages 31 Status Member -  
PHILOU10120 Posted messages 6463 Registration date   Status Contributor Last intervention   -
Hello everyone,

I'm looking for a formula that allows me to return an appreciation of a value (average or score) that is found, for example, in A1 and should be displayed in F16: In A1, there is the average or score which can vary from 0 to a maximum of 10, and in F16, I need to have one of the appreciations depending on the level of the average or score: Examples: 0 to 2.99 = "Very low", 3 to 3.99 = "low", 4 to 5.99 = "average", and so on... So each appreciation corresponds to a range of values for the average or score, and at any time the score can change, and I want the appreciation to change automatically as well.

Thank you in advance for your help

Best regards

6 answers

  1. ccm81 Posted messages 11033 Status Member 2 434
     
    Hello

    In F16
    =IF(A1<3,"very low",IF(A1<4,"Low",IF(A1<6,"Medium", "High")))
    it's up to you to continue after "Medium" (watch the number of parentheses at the end)

    Best regards
    0