0
0
Excelspreadsheet~5 mins

IFS function (multiple conditions) in Excel - Step-by-Step Guide

Choose your learning style9 modes available
Introduction
The IFS function helps you check many conditions one by one and gives a result for the first true condition. It is useful when you want to avoid many nested IF statements and keep your formulas simple and easy to read.
When you want to assign letter grades based on numeric scores, like A, B, C, etc.
When you need to categorize sales amounts into different levels like Low, Medium, High.
When you want to check multiple conditions for a product status and return different messages.
When you want to calculate discounts based on purchase quantity ranges.
When you want to replace multiple IF formulas with a cleaner, easier-to-manage formula.
Steps
Step 1: Click
- a blank cell where you want the result
The cell is selected and ready for formula input
Step 2: Type
- the formula bar
You start entering the IFS formula
💡 Start with =IFS(
Step 3: Enter
- formula bar
You add the first condition and its result, for example: A1>90, "Excellent"
💡 Each condition is followed by the result if true, separated by commas
Step 4: Add
- formula bar
You add more condition-result pairs separated by commas, like A1>75, "Good", A1>50, "Average"
💡 Order conditions from most specific to least specific
Step 5: Close
- formula bar
You finish the formula with a closing parenthesis ) and press Enter
💡 The formula looks like =IFS(A1>90,"Excellent",A1>75,"Good",A1>50,"Average",TRUE,"Poor")
Step 6: Check
- the result cell
The cell shows the result based on the first true condition
Before vs After
Before
Cell A1 contains a score like 82, and no formula is applied
After
Cell B1 shows "Good" because 82 is greater than 75 but not greater than 90 using the formula =IFS(A1>90,"Excellent",A1>75,"Good",A1>50,"Average",TRUE,"Poor")
Settings Reference
Logical_test and value_if_true pairs
📍 Inside the IFS formula in the formula bar
To define conditions to check and what to return when a condition is true
Default: No default, you must provide at least one condition and result
Default catch-all condition
📍 Inside the IFS formula as the last condition
To return a default result if none of the previous conditions are true
Default: Not required but recommended
Common Mistakes
Not including a default TRUE condition at the end
If none of the conditions are true, the formula returns an error
Add TRUE as the last condition with a default result, like TRUE, "Other"
Using overlapping conditions in wrong order
The formula stops at the first true condition, so order matters
Order conditions from most specific (highest value) to least specific (lowest value)
Forgetting to separate condition-result pairs with commas
The formula will show a syntax error
Make sure each condition and its result are separated by commas
Summary
IFS checks multiple conditions in order and returns the result for the first true one.
It simplifies formulas by avoiding many nested IF statements.
Always include a default TRUE condition to handle unexpected cases.