Challenge - 5 Problems
Nested IF Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Output of Nested IF for Grade Calculation
Given the formula
=IF(A1>=90, "A", IF(A1>=80, "B", IF(A1>=70, "C", "F"))) and the value in cell A1 is 85, what will be the output?Attempts:
2 left
💡 Hint
Think about the first condition that matches the value 85.
✗ Incorrect
The formula checks if A1 is 90 or more, which is false for 85. Then it checks if A1 is 80 or more, which is true, so it returns "B".
❓ Function Choice
intermediate2:00remaining
Choosing the Correct Nested IF for Discount
Which formula correctly applies a discount based on purchase amount in cell B2: 20% if over 1000, 10% if over 500, otherwise no discount?
Attempts:
2 left
💡 Hint
Check the order of conditions and the calculation for discount.
✗ Incorrect
Option B correctly checks the highest amount first and applies the correct discount percentages as multipliers.
📊 Formula Result
advanced2:00remaining
Result of Complex Nested IF with Text and Numbers
What is the result of the formula
=IF(A1="Yes", IF(B1>10, "High", "Low"), "No") if A1 contains "Yes" and B1 contains 8?Attempts:
2 left
💡 Hint
Check the first condition and then the nested condition carefully.
✗ Incorrect
Since A1 is "Yes", the formula checks B1. B1 is 8 which is not greater than 10, so it returns "Low".
🎯 Scenario
advanced2:00remaining
Using Nested IF to Categorize Age Groups
You want to categorize ages in cell C1 as "Child" if under 13, "Teen" if 13 to 19, "Adult" if 20 to 64, and "Senior" if 65 or older. Which formula correctly does this?
Attempts:
2 left
💡 Hint
Check the boundary values carefully for each age group.
✗ Incorrect
Option D correctly uses less than comparisons to include the upper bounds properly: under 13, under 20, under 65, else senior.
❓ data_analysis
expert2:00remaining
Count How Many Cells Return "Pass" Using IF
You have a column D with scores. The formula
=IF(D1>=50, "Pass", "Fail") is applied to each row. Which formula correctly counts how many "Pass" results are in the range E1:E100?Attempts:
2 left
💡 Hint
Remember the formula output is "Pass" or "Fail" in a different column.
✗ Incorrect
The IF formula outputs "Pass" or "Fail" in another column (e.g., E). Counting "Pass" in that output column E is done by COUNTIF(E1:E100, "Pass").