Challenge - 5 Problems
IF Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Output of nested IF formula
What is the output of the formula
=IF(A1>10, IF(A1<20, "Medium", "High"), "Low") when cell A1 contains the value 15?Attempts:
2 left
💡 Hint
Think about the first IF condition and then the nested IF inside it.
✗ Incorrect
The formula first checks if A1 is greater than 10. Since 15 > 10 is TRUE, it evaluates the nested IF. The nested IF checks if A1 is less than 20. Since 15 < 20 is TRUE, it returns "Medium".
❓ Function Choice
intermediate2:00remaining
Choose the correct IF formula for grading
You want to assign grades based on scores in cell B2: "Pass" if score is 50 or more, otherwise "Fail". Which formula correctly does this?
Attempts:
2 left
💡 Hint
Remember the condition includes scores equal to 50.
✗ Incorrect
Option D uses >=50 which means 50 or more is "Pass". Option D excludes 50, option D reverses logic, and option D only passes if exactly 50.
📊 Formula Result
advanced2:00remaining
Result of IF with AND condition
Given the formula
=IF(AND(A1>0, B1<5), "Yes", "No"), what is the result if A1=3 and B1=7?Attempts:
2 left
💡 Hint
Both conditions inside AND must be true for the IF to return "Yes".
✗ Incorrect
A1>0 is TRUE but B1<5 is FALSE (7<5 is false). AND returns FALSE, so IF returns "No".
🎯 Scenario
advanced2:00remaining
Using IF to categorize sales
You have sales amounts in cell C2. You want to categorize sales as "Low" if less than 100, "Medium" if between 100 and 500 (inclusive), and "High" if above 500. Which formula correctly categorizes the sales?
Attempts:
2 left
💡 Hint
Think about the order of conditions and how IF evaluates them.
✗ Incorrect
Option C correctly checks if C2<100 for "Low", else if C2<=500 for "Medium", else "High". Other options have redundant or incorrect nested IFs.
❓ data_analysis
expert2:00remaining
Count how many cells meet IF condition
You have a list of numbers in cells A1:A10. You want to count how many numbers are greater than 50 using an IF formula inside another function. Which formula gives the correct count?
Attempts:
2 left
💡 Hint
Think about how IF returns arrays and how SUM can add them up.
✗ Incorrect
Option B uses IF to return 1 for each cell >50 and 0 otherwise, then sums them. Option B is simpler but does not use IF. Option B is incorrect logic. Option B is invalid because IF inside SUMPRODUCT is not array-entered.