0
0
Google Sheetsspreadsheet~20 mins

Selecting cells, rows, and columns in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Master Selector
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1: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)
A10
B15
C30
D5
Attempts:
2 left
💡 Hint
Think about what the SUM function does with a range of cells.
Function Choice
intermediate
1: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?
A=SUM(3:3)
B=SUM(C3:C)
C=SUM(A3:Z3)
D=SUM(3:C)
Attempts:
2 left
💡 Hint
Selecting a whole row uses the row number before and after the colon.
📊 Formula Result
advanced
2: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 =SUM(A1, B1:C1)?
Google Sheets
=SUM(A1, B1:C1)
AError
B7
C5
D9
Attempts:
2 left
💡 Hint
SUM can take single cells and ranges together.
🎯 Scenario
advanced
2: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?
A=SUM(B2:OFFSET(B2,0,COUNTA(2:2)-1))
B=SUM(B2:INDEX(2:2, COUNTA(2:2)))
C=SUM(B2:E2)
D=SUM(B2:Z2)
Attempts:
2 left
💡 Hint
Use INDEX with COUNTA to find the last filled column in the row.
🧠 Conceptual
expert
1: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?
A9
B6
C12
D15
Attempts:
2 left
💡 Hint
Count how many rows and columns are included in the range.