0
0
Google Sheetsspreadsheet~20 mins

Formula structure and cell references in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Formula Mastery Badge
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 with mixed references?
Given the following values:

A1 = 5
B1 = 10

And the formula in C1:

=A1 + $B$1

What will be the value in C2 if the formula from C1 is copied down to C2?
Google Sheets
=A1 + $B$1
A5
B10
C15
DError
Attempts:
2 left
💡 Hint
Remember that $ signs lock the reference when copying formulas.
Function Choice
intermediate
2:00remaining
Which formula correctly sums cells A1 to A5 using absolute references?
You want to sum cells A1 to A5 and keep the range fixed when copying the formula to other cells. Which formula should you use?
A=SUM($A$1:$A$5)
B=SUM(A1:A5)
C=SUM($A1:$A5)
D=SUM(A$1:A$5)
Attempts:
2 left
💡 Hint
Absolute references use $ before both column and row.
📊 Formula Result
advanced
2:00remaining
What is the output of this formula with mixed relative and absolute references?
Given the values:

A1=2, B1=3, A2=4, B2=5

Formula in C1:

=A1*$B$1

What is the value in C2 after copying the formula from C1 to C2?
Google Sheets
=A1*$B$1
A12
B10
C6
DError
Attempts:
2 left
💡 Hint
Check how relative and absolute references change when copying formulas.
🎯 Scenario
advanced
2:00remaining
You want to multiply each value in column A by the value in B1 and copy the formula down. Which formula should you enter in C1?
Column A has numbers in A1 to A5. Cell B1 has a multiplier. You want to write a formula in C1 that multiplies A1 by B1 and then copy it down to C5, so each row multiplies the corresponding A cell by B1. Which formula should you use?
A=A1*B1
B=$A$1*$B$1
C=A1*$B$1
D=$A1*B$1
Attempts:
2 left
💡 Hint
Think about which references should stay fixed and which should change when copying down.
data_analysis
expert
2:00remaining
How many cells will contain the value 100 after copying this formula?
You have values in A1:A5 as 10, 20, 30, 40, 50 respectively. In B1 you have 10. You enter the formula =A1*$B$1 in C1 and copy it down to C5.

How many cells in C1:C5 will have the value 100?
Google Sheets
=A1*$B$1
A2
B0
C3
D1
Attempts:
2 left
💡 Hint
Calculate each product and count how many equal 100.