Challenge - 5 Problems
IFS Function Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Output of IFS with multiple conditions
Given the formula
=IFS(A1 < 50, "Low", A1 < 80, "Medium", A1 < 100, "High") and the value in cell A1 is 75, what will be the output?Attempts:
2 left
💡 Hint
Think about which condition is true first when checking from top to bottom.
✗ Incorrect
The IFS function checks conditions in order. Since 75 is not less than 50, it skips the first condition. The second condition (A1 < 80) is true, so it returns "Medium" and stops checking further.
❓ Function Choice
intermediate2:00remaining
Choosing the correct IFS formula for grading
You want to assign grades based on scores in cell B2: 90 and above is "A", 80 to 89 is "B", 70 to 79 is "C", below 70 is "F". Which IFS formula correctly implements this?
Attempts:
2 left
💡 Hint
Remember to use >= for the lower bound of each grade range and order conditions from highest to lowest.
✗ Incorrect
Option D correctly uses >= for the lower bounds and orders conditions from highest to lowest, ensuring correct grade assignment. Other options have incorrect comparison operators or order that cause wrong results.
❓ data_analysis
advanced2:00remaining
Analyzing IFS formula with overlapping conditions
Consider the formula
=IFS(C1 >= 100, "Excellent", C1 >= 80, "Good", C1 >= 80, "Average", TRUE, "Poor"). What will be the output if C1 is 85?Attempts:
2 left
💡 Hint
Check the order of conditions and which one matches first.
✗ Incorrect
The IFS function evaluates conditions in order. The first condition is false, the second condition (C1 >= 80) is true, so it returns "Good" and stops. The repeated condition for "Average" is never reached.
🎯 Scenario
advanced2:00remaining
Using IFS to categorize sales performance
You have monthly sales in cell D5. You want to categorize sales as "Low" if less than 500, "Moderate" if between 500 and 999, "High" if between 1000 and 1499, and "Very High" if 1500 or more. Which formula correctly categorizes the sales?
Attempts:
2 left
💡 Hint
Order conditions from smallest to largest and use less than for upper bounds.
✗ Incorrect
Option A correctly uses less than for upper bounds and orders conditions so each range is exclusive and covers all values. Other options have overlapping or incorrect ranges.
📊 Formula Result
expert2:00remaining
Result of IFS with logical TRUE as last condition
What is the output of the formula
=IFS(E1 < 0, "Negative", E1 = 0, "Zero", TRUE, "Positive") when E1 contains the value -5?Attempts:
2 left
💡 Hint
Check which condition matches first for the value -5.
✗ Incorrect
The first condition E1 < 0 is true for -5, so the formula returns "Negative" immediately without checking further conditions.