Challenge - 5 Problems
IFS Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2: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")Attempts:
2 left
💡 Hint
Remember IFS checks conditions in order and returns the first TRUE result.
✗ Incorrect
The formula checks conditions in order: 75 is not less than 50 (false), not less than 70 (false), but less than 90 (true), so it returns "Merit".
❓ Function Choice
intermediate2: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"
- Below 60: "Fail"
- 60 to 79: "Pass"
- 80 to 89: "Merit"
- 90 and above: "Distinction"
Attempts:
2 left
💡 Hint
Check the upper limits carefully for each grade range.
✗ Incorrect
Option A correctly uses < 80 for Pass (up to 79), < 90 for Merit (up to 89), and TRUE for Distinction (90 and above). Others have incorrect upper bounds.
❓ data_analysis
advanced2: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.
Merit is for scores 80 to 89 inclusive.
Attempts:
2 left
💡 Hint
Think about how to count numbers between two values.
✗ Incorrect
Option C uses COUNTIFS to count values >=80 and <90, matching Merit range. Option C also works but is more complex. Option C works but is less direct. Option C is invalid syntax.
🎯 Scenario
advanced2:00remaining
Identify the error in this IFS formula
What error will this formula produce if entered in Excel?
Assume A1 contains 95.
=IFS(A1 < 50, "Fail", A1 < 70, "Pass", A1 < 90, "Merit")Assume A1 contains 95.
Attempts:
2 left
💡 Hint
What happens if none of the conditions are TRUE in IFS?
✗ Incorrect
IFS requires at least one condition to be TRUE or a default TRUE condition at the end. Without it, if no condition matches, Excel returns #N/A error.
📊 Formula Result
expert2: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")Attempts:
2 left
💡 Hint
Check each condition carefully. Excel uses the AND function to combine multiple conditions.
✗ Incorrect
First condition B1="No" is FALSE. Second condition AND(B1="Yes", C1<50) is TRUE (B1 matches and 45<50), so formula returns "Low".