0
0
Google Sheetsspreadsheet~20 mins

Relative references in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Relative References 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 the formula when copied?
You have the formula =A1+B1 in cell C1. If you copy this formula from C1 to C2, what will be the formula in C2 and what will it calculate if A2=3 and B2=4?
AFormula in C2: <code>=A2+B2</code>, Result: 7
BFormula in C2: <code>=A1+B1</code>, Result: 5
CFormula in C2: <code>=B2+A2</code>, Result: 7
DFormula in C2: <code>=C1+B1</code>, Result: 9
Attempts:
2 left
💡 Hint
Think about how relative references change when you copy formulas down a row.
Function Choice
intermediate
2:00remaining
Which formula correctly sums the values in the row when copied?
You want to sum values in columns A and B for each row starting from row 2. Which formula should you put in cell C2 so that when copied down, it sums the correct row's A and B values?
A=SUM($A2:$B2)
B=SUM($A$2:$B$2)
C=SUM(A$2:B$2)
D=SUM(A2:B2)
Attempts:
2 left
💡 Hint
Consider how relative and absolute references behave when copying formulas down rows.
🎯 Scenario
advanced
2:00remaining
Fix the formula to keep column fixed but allow row to change when copied
You have the formula =A1*B1 in cell C1. You want to copy it down column C so that the reference to column A stays fixed but the row number changes (A1, A2, A3, ...). Which formula achieves this?
A=$A$1*B1
B=A$1*B1
C=$A1*B1
D=A1*$B1
Attempts:
2 left
💡 Hint
Use $ to fix the column but leave the row relative.
data_analysis
advanced
2:00remaining
How many cells will show the value 10 after copying the formula?
In cells A1 to A5, the values are 2, 4, 6, 8, 10 respectively. In cell B1, you enter the formula =A1*5 and copy it down to B5. How many cells in B1:B5 will show the value 10?
A1
B2
C0
D5
Attempts:
2 left
💡 Hint
Multiply each A cell by 5 and check which equals 10.
📊 Formula Result
expert
2:00remaining
What is the value in cell C3 after copying the formula?
You have the formula =SUM(A1:B1) in cell C1. You copy this formula down to C3. Given the following values:
A1=1, B1=2
A2=3, B2=4
A3=5, B3=6
What is the value in cell C3?
A5
B11
C7
D3
Attempts:
2 left
💡 Hint
Check how the relative references change when copying down two rows.