A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Try this one.
=IF(A2>20,"",IF(A2>=16,"High",IF(A2>=6,"Medium",IF(A2>=3,"Low",""))))
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
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
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
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.
Or, if you want to avoid nested IF's, you could consider this:
=LOOKUP(A2,{0,3,6,16,21},{"","Low","Medium","High",""})
You are welcome:)
Wow, this has worked. Thank you so much for your help on this.