0
0
Google Sheetsspreadsheet~20 mins

Nested IF functions in Google Sheets - 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 Evaluation
Given the formula =IF(A1>=90, "A", IF(A1>=80, "B", IF(A1>=70, "C", "F"))) in cell B1, what will be the output if A1 contains the value 85?
A"A"
B"C"
C"B"
D"F"
Attempts:
2 left
💡 Hint
Think about the conditions checked in order from highest to lowest.
📊 Formula Result
intermediate
2:00remaining
Nested IF Output for Discount Calculation
What is the result of the formula =IF(B2>1000, "20%", IF(B2>500, "10%", "0%")) if cell B2 contains 500?
A"0%"
B"20%"
C"10%"
D0
Attempts:
2 left
💡 Hint
Check each condition carefully and remember the order matters.
Function Choice
advanced
2:00remaining
Choosing the Correct Nested IF for Age Group
Which formula correctly assigns age groups as follows: "Child" if age < 13, "Teen" if age is between 13 and 19 inclusive, and "Adult" if age is 20 or more? Assume age is in cell A1.
A=IF(A1<=12, "Child", IF(A1<=19, "Teen", "Adult"))
B=IF(A1<13, "Child", IF(A1<=19, "Teen", "Adult"))
C=IF(A1<=13, "Child", IF(A1<19, "Teen", "Adult"))
D=IF(A1<13, "Child", IF(A1<19, "Teen", "Adult"))
Attempts:
2 left
💡 Hint
Check the boundary conditions carefully for each age group.
🎯 Scenario
advanced
2:00remaining
Nested IF for Multi-level Commission Rates
You want to calculate commission based on sales in cell C1: 5% if sales < 1000, 10% if sales between 1000 and 4999, 15% if sales between 5000 and 9999, and 20% if sales 10000 or more. Which formula correctly calculates the commission rate as a decimal (e.g., 0.05 for 5%)?
A=IF(C1<1000, 0.05, IF(C1<5000, 0.10, IF(C1<10000, 0.15, 0.20)))
B=IF(C1<=1000, 0.05, IF(C1<=5000, 0.10, IF(C1<=10000, 0.15, 0.20)))
C=IF(C1<1000, 0.05, IF(C1<=4999, 0.10, IF(C1<=9999, 0.15, 0.20)))
D=IF(C1<=999, 0.05, IF(C1<=4999, 0.10, IF(C1<=9999, 0.15, 0.20)))
Attempts:
2 left
💡 Hint
Remember to use less than for upper bounds to avoid overlap.
data_analysis
expert
2:00remaining
Count of Cells Returning "Pass" in Nested IF Formula
You have a column A with scores from 0 to 100. The formula =IF(A1>=60, "Pass", "Fail") is applied down column B for 100 rows. How many cells in column B will show "Pass" if the scores in column A are all integers from 0 to 99?
A61
B39
C60
D40
Attempts:
2 left
💡 Hint
Count how many numbers from 0 to 99 are 60 or greater.