Share via

Scoring formula - help needed!

Anonymous
2024-04-15T10:25:32+00:00

I'm trying to put together a formula where if a score was between a ranges it would return text i.e High, low etc - any idea how to do this?

For example

Where a score ranges between 16-20 it would return the value as High

Medium - range 6-10

Low - 3-5

I'm struggling to work out whether it can be done in one cell or do I need to do anything else?

Thanks in advance

Microsoft 365 and Office | Excel | For business | MacOS

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

4 answers

Sort by: Most helpful
  1. Anonymous
    2024-04-15T10:46:33+00:00

    Try this one.

    =IF(A2>20,"",IF(A2>=16,"High",IF(A2>=6,"Medium",IF(A2>=3,"Low",""))))

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments
  2. riny 20,870 Reputation points Volunteer Moderator
    2024-04-15T13:01:14+00:00

    Or, if you want to avoid nested IF's, you could consider this:

    =LOOKUP(A2,{0,3,6,16,21},{"","Low","Medium","High",""})

    Was this answer helpful?

    0 comments No comments
  3. Anonymous
    2024-04-15T12:48:11+00:00

    You are welcome:)

    Was this answer helpful?

    0 comments No comments
  4. Anonymous
    2024-04-15T12:19:19+00:00

    Wow, this has worked. Thank you so much for your help on this.

    Was this answer helpful?

    0 comments No comments