What it does
IFS checks multiple conditions in order and returns the result for the first true condition.
Syntax or pattern
=IFS(test1, value1, test2, value2, ...)5 practical examples
Grade scores
Convert numeric scores into grades.
=IFS(B2>=90,"A",B2>=80,"B",B2>=70,"C",TRUE,"Needs work")TRUE at the end acts as a final fallback.
Priority labels
Assign priority by days remaining.
=IFS(D2<0,"Overdue",D2<=3,"Urgent",D2<=7,"Soon",TRUE,"Later")Order conditions from most specific to broadest.
Sales tier
Classify sales performance into tiers.
=IFS(C2>=50000,"Gold",C2>=25000,"Silver",C2>=10000,"Bronze",TRUE,"Starter")Great for business classifications.
Inventory status
Label stock levels.
=IFS(B2=0,"Out",B2<10,"Low",B2<50,"OK",TRUE,"High")This makes inventory reports easier to read.
Age group
Create an age-band column.
=IFS(A2<18,"Under 18",A2<65,"Adult",TRUE,"Senior")IFS is easier to scan than deeply nested IF formulas.
Common mistakes to avoid
- Forgetting a final fallback condition.
- Putting broad conditions before specific ones.
- Using IFS when a simple IF would be clearer.
Related Excel examples
FAQ
What happens if no IFS condition is true?
Excel returns an error unless you include a fallback like TRUE.
Here are some ideas for you
Optional resources that may help if you are learning formulas, building reports, or working in spreadsheets often.
- Excel formula booksSee ideas
Practice formulas with structured examples you can keep beside your desk.
- Excel shortcut guidesSee ideas
Build speed with keyboard shortcuts for selection, formatting and navigation.
- Numeric keypadsSee ideas
Helpful if you enter many numbers on a laptop or compact keyboard.
- External monitorsSee ideas
Useful for viewing large worksheets, formulas and reference tables side by side.
- Desk notebooksSee ideas
Sketch formula logic, report ideas and table structures before building.
- Laptop standsSee ideas
Make long spreadsheet sessions more comfortable and ergonomic.
Some links in this section may be affiliate links. Choose only what is useful for your own work.