Challenge - 5 Problems
Sheets API Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1:30remaining
What is the output of this formula?
Given the following data in cells A1:A5: 2, 4, 6, 8, 10, what is the output of the formula
=SUM(A1:A5)/COUNT(A1:A5)?Google Sheets
=SUM(A1:A5)/COUNT(A1:A5)
Attempts:
2 left
💡 Hint
Think about what SUM and COUNT functions do and how dividing them gives the average.
✗ Incorrect
SUM adds all numbers: 2+4+6+8+10=30. COUNT counts how many numbers: 5. Dividing 30 by 5 gives 6.
❓ Function Choice
intermediate1:30remaining
Which function counts only non-empty cells?
You want to count how many cells in range B1:B10 contain any data (numbers or text). Which function should you use?
Attempts:
2 left
💡 Hint
COUNT counts only numbers, but you want to count all non-empty cells.
✗ Incorrect
COUNTA counts all non-empty cells including text and numbers. COUNT counts only numbers.
🎯 Scenario
advanced2:00remaining
How to sum values only if another column meets a condition?
You have sales amounts in column C and regions in column B. You want to sum sales only for region "East". Which formula will do this correctly?
Attempts:
2 left
💡 Hint
SUMIF sums values in one range based on criteria in another range.
✗ Incorrect
SUMIF(range_to_check, criteria, range_to_sum) sums values in range_to_sum where range_to_check matches criteria.
📊 Formula Result
advanced1:30remaining
What is the output of this array formula?
Given cells A1:A3 contain 1, 2, 3 respectively, what is the output of
=ARRAYFORMULA(A1:A3*2)?Google Sheets
=ARRAYFORMULA(A1:A3*2)Attempts:
2 left
💡 Hint
ARRAYFORMULA applies the operation to each element in the range.
✗ Incorrect
Each value in A1:A3 is multiplied by 2, resulting in 2, 4, 6.
❓ data_analysis
expert2:00remaining
How many unique values are in this range?
Cells D1:D7 contain the values: 5, 3, 5, 7, 3, 9, 7. What is the result of
=COUNTA(UNIQUE(D1:D7))?Google Sheets
=COUNTA(UNIQUE(D1:D7))
Attempts:
2 left
💡 Hint
UNIQUE returns only distinct values, then COUNTA counts them.
✗ Incorrect
Unique values are 5, 3, 7, 9. Counting them gives 4.