0
0
Excelspreadsheet~20 mins

IFS function (multiple conditions) in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
IFS Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Output of IFS with multiple conditions
What is the result of this formula if cell A1 contains 75?

=IFS(A1 < 50, "Fail", A1 < 70, "Pass", A1 < 90, "Merit", TRUE, "Distinction")
A"Fail"
B"Distinction"
C"Pass"
D"Merit"
Attempts:
2 left
💡 Hint
Remember IFS checks conditions in order and returns the first TRUE result.
Function Choice
intermediate
2:00remaining
Choose the correct IFS formula for grading
Which formula correctly assigns grades based on score in A1:
- Below 60: "Fail"
- 60 to 79: "Pass"
- 80 to 89: "Merit"
- 90 and above: "Distinction"
A=IFS(A1 &lt; 60, "Fail", A1 &lt; 80, "Pass", A1 &lt; 90, "Merit", TRUE, "Distinction")
B=IFS(A1 &lt; 60, "Fail", A1 &lt; 79, "Pass", A1 &lt; 89, "Merit", TRUE, "Distinction")
C=IFS(A1 &lt; 60, "Fail", A1 &lt; 80, "Pass", A1 &lt; 89, "Merit", TRUE, "Distinction")
D=IFS(A1 &lt; 60, "Fail", A1 &lt; 79, "Pass", A1 &lt; 90, "Merit", TRUE, "Distinction")
Attempts:
2 left
💡 Hint
Check the upper limits carefully for each grade range.
data_analysis
advanced
2:00remaining
Count how many students got Merit
Given scores in cells A2:A10, which formula counts how many students scored a Merit grade using IFS logic?
Merit is for scores 80 to 89 inclusive.
A=COUNTIF(A2:A10, "IFS(A2:A10>=80, A2:A10<90)")
B=SUMPRODUCT(--(A2:A10>=80), --(A2:A10<90))
C=COUNTIFS(A2:A10, ">=80", A2:A10, "<90")
D=COUNTIF(A2:A10, ">=80") - COUNTIF(A2:A10, ">=90")
Attempts:
2 left
💡 Hint
Think about how to count numbers between two values.
🎯 Scenario
advanced
2:00remaining
Identify the error in this IFS formula
What error will this formula produce if entered in Excel?

=IFS(A1 < 50, "Fail", A1 < 70, "Pass", A1 < 90, "Merit")
Assume A1 contains 95.
A#N/A error because no condition is TRUE and no default is provided
BReturns "Fail" because first condition is always checked
CReturns "Merit" because last condition covers all remaining values
DFormula returns 0 because no TRUE condition
Attempts:
2 left
💡 Hint
What happens if none of the conditions are TRUE in IFS?
📊 Formula Result
expert
2:00remaining
Complex nested IFS with text and numbers
What is the result of this formula if B1 contains "Yes" and C1 contains 45?

=IFS(B1="No", "No action", AND(B1="Yes", C1 < 50), "Low", AND(B1="Yes", C1 >= 50), "High", TRUE, "Unknown")
A"Unknown"
B"Low"
C"No action"
D"High"
Attempts:
2 left
💡 Hint
Check each condition carefully. Excel uses the AND function to combine multiple conditions.