Home > other >  Rating scale 1-10
Rating scale 1-10

Time:09-26

I have survey data with rating survey responses "Excellent", "Very Good"."Good" or Poor. How do I replace these texts in excel with number range - "9-10", "7-8" or "0-6"

CodePudding user response:

=CHOOSE(MATCH(A1,{"Excellent","Very Good","Good","Poor"},0),"9-10","7-8","5-6","0-4")

I made up the numbers, since your question showed 4 options and 3 results only.

CodePudding user response:

This can be done with a simple =IF() construction, something like:

=IF(OR(A1=9,A1=10),"Excellent",
    IF(OR(A1=7,A1=8),...),
    ...
   )
  • Related