0
0
Google Sheetsspreadsheet~20 mins

Calculated fields in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Calculated Fields Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate Total Price with Tax
You have a price in cell A2 and a tax rate in cell B2 (as a decimal). Which formula in cell C2 correctly calculates the total price including tax?
A=A2 + B2
B=A2 * (1 + B2)
C=A2 * B2
D=A2 / (1 - B2)
Attempts:
2 left
💡 Hint
Remember to add the tax to the original price, not just the tax amount.
📊 Formula Result
intermediate
2:00remaining
Calculate Average Score Excluding Zeroes
You have scores in cells A2 to A6. Which formula in cell B2 calculates the average of only the scores greater than zero?
A=SUM(A2:A6)/COUNT(A2:A6)
B=AVERAGE(A2:A6)
C=AVERAGEIF(A2:A6, ">0")
D=SUMIF(A2:A6, ">0")/COUNT(A2:A6)
Attempts:
2 left
💡 Hint
Use a function that averages only cells meeting a condition.
Function Choice
advanced
2:00remaining
Choose the Correct Formula for Dynamic Discount
You want to apply a 10% discount if the quantity in B2 is more than 10, otherwise no discount. Which formula in C2 correctly calculates the discounted price based on price in A2?
A=A2 * IF(B2 < 10, 0.9, 1)
B=A2 * IF(B2 >= 10, 0.9, 1)
C=A2 * IF(B2 > 10, 1, 0.9)
D=A2 * IF(B2 > 10, 0.9, 1)
Attempts:
2 left
💡 Hint
Discount applies only when quantity is strictly greater than 10.
data_analysis
advanced
2:00remaining
Calculate Total Sales with Multiple Conditions
You have sales data with amounts in column A and regions in column B. Which formula calculates the total sales in column A only for the region "East"?
A=SUMIFS(A:A, B:B, "East")
B=SUMIF(A:A, "East", B:B)
C=SUMIF(B:B, "East", A:A)
D=SUMIFS(B:B, A:A, "East")
Attempts:
2 left
💡 Hint
Use the function that sums with multiple criteria.
🎯 Scenario
expert
3:00remaining
Create a Formula to Calculate Commission Based on Sales Brackets
You want to calculate commission in cell C2 based on sales in A2: 5% for sales up to 1000, 10% for sales between 1001 and 5000, and 15% for sales above 5000. Which formula correctly calculates the commission?
A=IF(A2 <= 1000, A2 * 0.05, IF(A2 <= 5000, A2 * 0.1, A2 * 0.15))
B=IF(A2 <= 1000, A2 * 0.05, IF(A2 < 5000, A2 * 0.1, A2 * 0.15))
C=IF(A2 < 1000, A2 * 0.05, IF(A2 < 5000, A2 * 0.1, A2 * 0.15))
D=IF(A2 < 1000, A2 * 0.05, IF(A2 <= 5000, A2 * 0.1, A2 * 0.15))
Attempts:
2 left
💡 Hint
Use nested IFs with correct boundary conditions including equal signs.