0
0
Google Sheetsspreadsheet~10 mins

Absolute references ($) in Google Sheets - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the formula to keep the reference to cell A1 fixed when copying.

Google Sheets
=SUM([1]+B2)
Drag options to blanks, or click blank then click option'
A$A1
BA1
CA$1
D$A$1
Attempts:
3 left
💡 Hint
Common Mistakes
Using relative reference like A1 which changes when copied.
Fixing only row or column but not both.
2fill in blank
medium

Complete the formula to fix only the column A when copying across columns.

Google Sheets
=B1*[1]
Drag options to blanks, or click blank then click option'
A$A2
BA2
CA$2
D$A$2
Attempts:
3 left
💡 Hint
Common Mistakes
Fixing both column and row which is too strict.
Not fixing the column, so it changes when copied.
3fill in blank
hard

Fix the error in the formula to correctly lock the row 5 when copying down.

Google Sheets
=SUM(B[1]:D5)
Drag options to blanks, or click blank then click option'
A5
B$5
C$5$
D5$
Attempts:
3 left
💡 Hint
Common Mistakes
Placing $ after the number which is invalid.
Not using $ so the row changes when copied.
4fill in blank
hard

Fill both blanks to create a formula that multiplies the fixed cell B1 by cells in column C.

Google Sheets
=C[1]*[2]
Drag options to blanks, or click blank then click option'
A2
B$B$1
CB1
D$C$1
Attempts:
3 left
💡 Hint
Common Mistakes
Using relative reference for B1 which changes when copied.
Fixing the wrong cell or row.
5fill in blank
hard

Fill all three blanks to create a formula that sums a fixed range from A1 to C1 and multiplies by the value in D2.

Google Sheets
=SUM([1]:[2])*[3]
Drag options to blanks, or click blank then click option'
A$A$1
B$C$1
CD2
DC2
Attempts:
3 left
💡 Hint
Common Mistakes
Not fixing the sum range cells, so the range changes when copied.
Using wrong multiplier cell.