0
0
Google Sheetsspreadsheet~20 mins

Mixed references in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Mixed 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 this formula with mixed references?
Given the formula =A$1 + $B2 entered in cell C3, and the following values:

- A1 = 10
- B2 = 5
- A3 = 3
- B3 = 7

What will be the value of the formula in cell C3?
A22
B17
C15
D12
Attempts:
2 left
💡 Hint
Remember that $ locks either the row or the column depending on its position.
Function Choice
intermediate
2:00remaining
Which formula correctly sums a fixed column with a changing row?
You want to sum values from column C, but the row number should change as you copy the formula down. Which formula uses mixed references correctly to achieve this?
A=SUM(C$1)
B=SUM($C1)
C=SUM($C$1)
D=SUM(C1)
Attempts:
2 left
💡 Hint
Think about which part of the reference should stay fixed and which should change.
data_analysis
advanced
2:00remaining
How many unique cells are referenced when copying this formula?
If you enter the formula =B$2 + $C3 in cell D4 and copy it down 3 rows and right 2 columns (to cells E4:F7), how many unique cells are referenced in total by all copied formulas?
A6
B9
C8
D12
Attempts:
2 left
💡 Hint
Track how the mixed references change when copying across rows and columns.
🎯 Scenario
advanced
2:00remaining
You want to multiply a fixed row by a fixed column in a table
You have a table where row 1 contains prices and column A contains quantities. You want to create a formula in cell B2 that multiplies the quantity in column A by the price in row 1, and then copy this formula across the table. Which formula uses mixed references correctly?
A=$A2*B$1
B=A$2*$B1
C=$A$2*$B$1
D=A2*B1
Attempts:
2 left
💡 Hint
Lock the column for quantities and lock the row for prices.
📊 Formula Result
expert
2:00remaining
What is the value after copying this formula with mixed references?
You enter the formula =SUM($A2:B$1) in cell C3. What is the result of this formula if:
- A1=1, B1=2
- A2=3, B2=4
- A3=5, B3=6

Assuming the formula is copied from C3 to D4, what is the value in D4?
A9
B12
C10
D7
Attempts:
2 left
💡 Hint
Check how the mixed references shift when copying one row down and one column right.