Challenge - 5 Problems
Row and Column Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1:00remaining
Find the row number of a cell
What is the output of the formula
=ROW(B5) in Excel?Attempts:
2 left
💡 Hint
The ROW function returns the row number of the referenced cell.
✗ Incorrect
The formula =ROW(B5) returns 5 because B5 is in the 5th row.
📊 Formula Result
intermediate1:00remaining
Find the column number of a cell
What is the output of the formula
=COLUMN(D10) in Excel?Attempts:
2 left
💡 Hint
The COLUMN function returns the column number of the referenced cell, where A=1, B=2, etc.
✗ Incorrect
The formula =COLUMN(D10) returns 4 because column D is the 4th column.
❓ Function Choice
advanced1:30remaining
Choose the correct formula to get the row number of the active cell
Which formula returns the row number of the cell where the formula is entered?
Attempts:
2 left
💡 Hint
When no argument is given, ROW() returns the row of the current cell.
✗ Incorrect
The formula =ROW() returns the row number of the cell where it is entered.
🎯 Scenario
advanced2:00remaining
Using ROW and COLUMN to create a dynamic range
You want to create a formula that sums a 3x3 block of cells starting from the cell where the formula is entered. Which formula correctly sums the 3 rows and 3 columns starting at the current cell?
Attempts:
2 left
💡 Hint
Use ADDRESS to get the current cell address, INDIRECT to convert text to reference, and OFFSET to define the range.
✗ Incorrect
Option B correctly uses ADDRESS(ROW(),COLUMN()) to get the current cell, INDIRECT to convert it to a reference, and OFFSET to select a 3x3 block starting at that cell.
❓ data_analysis
expert2:30remaining
Count how many cells in a range are in even rows
Given the range A1:C10, which formula correctly counts how many cells are in even-numbered rows?
Attempts:
2 left
💡 Hint
Use ROW to get row numbers, MOD to check evenness, and SUMPRODUCT to count TRUE values.
✗ Incorrect
Option C uses ROW(A1:C10) to get all row numbers in the range, MOD(...,2)=0 to check even rows, and SUMPRODUCT to count them.