0
0
Excelspreadsheet~20 mins

Row and column fields in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Row and Column Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1:00remaining
Find the row number of a cell
What is the output of the formula =ROW(B5) in Excel?
A5
B2
CB
DError
Attempts:
2 left
💡 Hint
The ROW function returns the row number of the referenced cell.
📊 Formula Result
intermediate
1:00remaining
Find the column number of a cell
What is the output of the formula =COLUMN(D10) in Excel?
AError
BD
C10
D4
Attempts:
2 left
💡 Hint
The COLUMN function returns the column number of the referenced cell, where A=1, B=2, etc.
Function Choice
advanced
1: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?
A=ROW()
B=COLUMN()
C=ROW(A1)
D=ADDRESS(ROW(),COLUMN())
Attempts:
2 left
💡 Hint
When no argument is given, ROW() returns the row of the current cell.
🎯 Scenario
advanced
2: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?
A=SUM(OFFSET(ADDRESS(ROW(),COLUMN()),0,0,3,3))
B=SUM(OFFSET(INDIRECT(ADDRESS(ROW(),COLUMN())),0,0,3,3))
C=SUM(OFFSET(A1,ROW(),COLUMN(),3,3))
D=SUM(OFFSET(INDIRECT(ADDRESS(ROW(),COLUMN())),1,1,3,3))
Attempts:
2 left
💡 Hint
Use ADDRESS to get the current cell address, INDIRECT to convert text to reference, and OFFSET to define the range.
data_analysis
expert
2: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?
A=COUNTIF(ROW(A1:C10),"=2")
B=COUNTIF(A1:C10,"even")
C=SUMPRODUCT(--(MOD(ROW(A1:C10),2)=0))
D=SUMPRODUCT(--(MOD(COLUMN(A1:C10),2)=0))
Attempts:
2 left
💡 Hint
Use ROW to get row numbers, MOD to check evenness, and SUMPRODUCT to count TRUE values.