0
0
Excelspreadsheet~20 mins

Nested IF functions in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Nested IF Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2: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?
A"F"
B"A"
C"B"
D"C"
Attempts:
2 left
💡 Hint
Think about the first condition that matches the value 85.
Function Choice
intermediate
2: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?
A=IF(B2>1000, B2*0.2, IF(B2>500, B2*0.1, B2))
B=IF(B2>1000, B2*0.8, IF(B2>500, B2*0.9, B2))
C=IF(B2>500, B2*0.9, IF(B2>1000, B2*0.8, B2))
D=IF(B2>1000, B2*0.8, IF(B2>500, B2*0.1, B2))
Attempts:
2 left
💡 Hint
Check the order of conditions and the calculation for discount.
📊 Formula Result
advanced
2: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?
A"Low"
B"High"
C"No"
D0
Attempts:
2 left
💡 Hint
Check the first condition and then the nested condition carefully.
🎯 Scenario
advanced
2: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?
A=IF(C1<13, "Child", IF(C1<20, "Teen", IF(C1<64, "Adult", "Senior")))
B=IF(C1<=13, "Child", IF(C1<19, "Teen", IF(C1<64, "Adult", "Senior")))
C=IF(C1<13, "Child", IF(C1<=19, "Teen", IF(C1<=64, "Adult", "Senior")))
D=IF(C1<13, "Child", IF(C1<20, "Teen", IF(C1<65, "Adult", "Senior")))
Attempts:
2 left
💡 Hint
Check the boundary values carefully for each age group.
data_analysis
expert
2: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?
A=COUNTIF(E1:E100, "Pass")
B=COUNTIF(D1:D100, ">=50")
C=SUM(IF(D1:D100>=50, 1, 0))
D=COUNTIF(D1:D100, "Pass")
Attempts:
2 left
💡 Hint
Remember the formula output is "Pass" or "Fail" in a different column.