Create a Status with Multiple Conditions
Two labels aren't enough — you need scores sorted into three or more tiers, like Excellent, Pass, and Fail, without building a tangle of nested IF statements.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
IFS takes pairs of condition-and-result and returns the result of the FIRST condition that's true, checking left to right. A score of 95 hits B2>=90 and stops at Excellent; an 80 fails that test but passes B2>=70, so it's a Pass. The final pair, TRUE,"Fail", is the catch-all: TRUE is always true, so anything that survived the earlier tests lands there. Without it, a 50 would return #N/A, because IFS errors when no condition matches. Order matters — conditions must run from strictest to loosest. IFS works in Google Sheets and in Excel 2019 or newer.
When to use it
Use this for grading scales, tiered commission bands, risk ratings, and service-level buckets — anywhere a number maps to three or more labels and readability matters.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveLast reviewed 2026-07-08