0
0
Excelspreadsheet~20 mins

Mixed references ($A1, A$1) in Excel - 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 when copied?
You have the formula =B$2 + $A3 in cell C3. What will be the formula in cell D4 after copying it from C3 to D4?
A=C$3 + $B4
B=C$2 + $B3
C=B$3 + $A4
D=C$2 + $A4
Attempts:
2 left
💡 Hint
Remember that $ before a letter locks the column, and $ before a number locks the row.
Function Choice
intermediate
2:00remaining
Which formula correctly sums values with mixed references?
You want to sum values in row 5 from columns B to E, but always add the value in cell A5. Which formula correctly uses mixed references when copied across columns?
A=SUM(B5:E5) + $A5
B=SUM($B5:$E5) + $A$5
C=SUM(B$5:E$5) + $A5
D=SUM(B5:E5) + A$5
Attempts:
2 left
💡 Hint
Think about which parts should stay fixed when copying across columns.
data_analysis
advanced
2:00remaining
How many unique cells are referenced after copying?
You have the formula =SUM($B2:B$5) in cell C3. You copy this formula to cells C4, D3, and D4. How many unique cells are referenced in total by all these formulas?
A8 unique cells
B12 unique cells
C10 unique cells
D14 unique cells
Attempts:
2 left
💡 Hint
Analyze how the mixed references change when copying across rows and columns.
🎯 Scenario
advanced
2:00remaining
You want a formula that always sums the same row but adjusts columns when copied
Which formula should you enter in cell B2 so that when copied across columns, it always sums row 1 from column A to the current column?
A=SUM($A$1:A$1)
B=SUM(A$1:$A1)
C=SUM($A1:A1)
D=SUM(A1:$A1)
Attempts:
2 left
💡 Hint
Think about locking the row but allowing the column to change.
📊 Formula Result
expert
2:00remaining
What is the value of cell D5 after copying this formula?
Cell B3 contains the formula =SUM($A$1:A$1) + $B3. You copy this formula to cell D5. If A1=2, B3=5, B5=7, and C1=3, what is the value in D5?
A10
B12
C14
D17
Attempts:
2 left
💡 Hint
Check how the mixed references change when copying from B3 to D5 and sum the correct cells.