0
0
Excelspreadsheet~20 mins

Relative references (A1) in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Relative Reference Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the output of this formula when copied?
You have the value 10 in cell A1 and 20 in cell A2. In cell B1, you enter the formula =A1+A2. Then you copy the formula from B1 to B2. What is the value shown in cell B2?
A30
B20
C10
D40
Attempts:
2 left
💡 Hint
Remember that relative references change based on the position where the formula is copied.
📊 Formula Result
intermediate
2:00remaining
What value appears in cell C3 after copying?
Cell B2 contains the formula =A1*2. If you copy this formula from B2 to C3, what will be the formula in C3 and what value will it calculate if A2=5 and B2=10?
AFormula: =B2*2, Value: 10*2=20
BFormula: =B1*2, Value: 0*2=0
CFormula: =A2*2, Value: 5*2=10
DFormula: =B3*2, Value: 0*2=0
Attempts:
2 left
💡 Hint
Relative references adjust based on how many rows and columns you move the formula.
Function Choice
advanced
2:00remaining
Which formula correctly sums the values in the row above when copied?
You want to write a formula in cell B2 that sums the values in the row above (cells A1 and B1). When you copy this formula to C2, it should sum B1 and C1. Which formula should you use in B2?
A=A1+B1
B=SUM(A1:B1)
C=SUM($A$1:$B$1)
D=SUM(A$1:B$1)
Attempts:
2 left
💡 Hint
Think about how to keep the row fixed but allow the columns to adjust when copying.
🎯 Scenario
advanced
2:00remaining
You want to multiply each value in column A by the value in B1 and copy down. Which formula in C2 works correctly?
Column A has numbers starting from A2 downwards. Cell B1 has a multiplier. You want to write a formula in C2 that multiplies A2 by B1. When you copy this formula down column C, it should always multiply the value in column A of the same row by the fixed value in B1. Which formula should you use in C2?
A=A2*B1
B=A$2*B$1
C=$A2*$B$1
D=$A$2*B1
Attempts:
2 left
💡 Hint
Fix the reference to B1 so it does not change when copying down.
data_analysis
expert
3:00remaining
How many unique cells are referenced after copying this formula down 4 rows?
In cell B2, you enter the formula =A1 + A2. You then copy this formula down from B2 to B5 (4 rows total). How many unique cells in column A are referenced by all these formulas combined?
A5 unique cells
B4 unique cells
C6 unique cells
D8 unique cells
Attempts:
2 left
💡 Hint
List the references for each copied formula and count unique cells.