0
0
Excelspreadsheet~20 mins

Selecting cells, rows, and columns in Excel - 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
2:00remaining
Selecting a range of cells for sum
You want to sum the values in cells from B2 to B6 in Excel. Which formula will correctly calculate this sum?
A=SUM(B2-B6)
B=SUM(B2:B6)
C=SUM(B2,B6)
D=SUM(B2;B6)
Attempts:
2 left
💡 Hint

Think about how Excel defines a continuous range of cells.

Function Choice
intermediate
2:00remaining
Selecting entire row for average
You want to calculate the average of all values in row 4. Which formula correctly selects the entire row 4 in Excel?
A=AVERAGE(A4:A1048576)
B=AVERAGE(A4:Z4)
C=AVERAGE(4)
D=AVERAGE(4:4)
Attempts:
2 left
💡 Hint

Excel allows selecting entire rows by using row numbers with a colon.

🎯 Scenario
advanced
2:30remaining
Selecting columns with mixed data
You have data in columns A to D. Columns A and B contain numbers, C contains text, and D contains dates. You want to sum all numbers in columns A and B for rows 2 to 10. Which formula correctly selects these cells?
A=SUM(A2:B)
B=SUM(A:B)
C=SUM(A2:B10)
D=SUM(A2:D10)
Attempts:
2 left
💡 Hint

Focus on selecting only the numeric columns and the correct rows.

📊 Formula Result
advanced
2:00remaining
Selecting non-adjacent cells for sum
You want to sum values in cells A1, C1, and E1 only. Which formula correctly sums these non-adjacent cells in Excel?
A=SUM(A1,C1,E1)
B=SUM(A1:C1:E1)
C=SUM(A1:C1,E1)
D=SUM(A1-E1)
Attempts:
2 left
💡 Hint

Think about how to list multiple separate cells in a formula.

data_analysis
expert
2:30remaining
Counting non-empty cells in a column
You want to count how many cells in column B (from B2 to B100) are not empty. Which formula will give the correct count?
A=COUNTA(B2:B100)
B=COUNT(B2:B100)
C=COUNTBLANK(B2:B100)
D=COUNTIF(B2:B100,"")
Attempts:
2 left
💡 Hint

Remember that COUNTA counts non-empty cells, while COUNT counts only numbers.