Challenge - 5 Problems
Master Selector
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 selecting a range?
In Google Sheets, what will be the result of entering the formula
=SUM(B2:D2) if the cells B2, C2, and D2 contain the values 5, 10, and 15 respectively?Google Sheets
=SUM(B2:D2)
Attempts:
2 left
💡 Hint
Think about what the SUM function does with a range of cells.
✗ Incorrect
The formula sums all values in cells B2, C2, and D2. Since they are 5, 10, and 15, the total is 30.
❓ Function Choice
intermediate1:30remaining
Which formula selects the entire third row?
You want to select all cells in the third row of a Google Sheet to sum their values. Which formula correctly selects the entire third row?
Attempts:
2 left
💡 Hint
Selecting a whole row uses the row number before and after the colon.
✗ Incorrect
Using 3:3 selects the entire third row. Other options either select a column or are invalid.
📊 Formula Result
advanced2:00remaining
What is the output of this mixed cell selection formula?
Given the following values in Google Sheets:
- A1 = 2
- B1 = 3
- C1 = 4
What is the result of the formula
- A1 = 2
- B1 = 3
- C1 = 4
What is the result of the formula
=SUM(A1, B1:C1)?Google Sheets
=SUM(A1, B1:C1)
Attempts:
2 left
💡 Hint
SUM can take single cells and ranges together.
✗ Incorrect
The formula sums A1 (2) plus the range B1:C1 (3 + 4), total 2 + 3 + 4 = 9.
🎯 Scenario
advanced2:30remaining
Selecting columns with dynamic ranges
You have a Google Sheet where column A has names and columns B to E have monthly sales data. You want a formula that sums all sales for the first person in row 2, but the number of months (columns) can change. Which formula correctly sums all sales from column B to the last column with data in row 2?
Attempts:
2 left
💡 Hint
Use INDEX with COUNTA to find the last filled column in the row.
✗ Incorrect
Option B uses INDEX to find the last non-empty cell in row 2 and sums from B2 to that cell, adapting to changing columns.
🧠 Conceptual
expert1:30remaining
How many cells are selected by this range?
In Google Sheets, what is the total number of cells selected by the range
C3:E5?Attempts:
2 left
💡 Hint
Count how many rows and columns are included in the range.
✗ Incorrect
The range C3:E5 covers 3 columns (C, D, E) and 3 rows (3, 4, 5), so 3 x 3 = 9 cells.