Complete the formula to get the row number of cell A5.
=ROW([1])The ROW function returns the row number of the given cell reference. Using A5 returns 5.
Complete the formula to get the column number of cell C3.
=COLUMN([1])The COLUMN function returns the column number of the given cell reference. C3 is in column 3.
Fix the error in the formula to get the row number of cell B10.
=ROW([1])The ROW function requires a valid cell reference like B10. Just the number or column letter alone is invalid.
Fill both blanks to create a formula that returns the column number of cell in row 4 and column B.
=COLUMN([1][2])
Combining column letter B and row number 4 creates the cell reference B4. The COLUMN function then returns 2.
Fill both blanks to create a formula that returns the row number of the cell in column D and row 7.
=ROW([1][2])
The cell reference is formed by column letter D, no extra character (empty string), and row number 7, making D7. The ROW function returns 7.