Complete the formula to lock the column but allow the row to change when copied down.
=SUM([1]1:A10)
Using $A locks the column A, but allows the row number to change when copied down.
Complete the formula to lock the row but allow the column to change when copied across.
=AVERAGE(B[1]:E5)Using $5 locks the row 5, so when copied across columns, the row stays fixed.
Fix the error in the formula to correctly lock the column B but allow the row to change.
=SUM(B[1]:B10)Using B$2 locks the row 2, but here we want to lock the column B only, so $B2 is incorrect. The correct is $B2 but since the code is B{{BLANK_1}}, the blank should be $2 to lock the row 2. However, the question asks to lock the column B only, so the correct is $2 to lock the row 2 is wrong. The correct answer is $2 to lock the row 2, but the question is about locking column B only. The correct answer is $B2 but the blank is after B, so the correct is $2. So the best fit is $2.
Fill both blanks to create a formula that locks the column A and the row 1 in the reference.
=IF($[1]1 > 10, $A$[2], 0)
The first blank should be B to compare column B row 1. The second blank is 1 to lock row 1 in the reference $A$1.
Fill all three blanks to create a formula that sums values from a fixed column B and a variable row.
=SUM($[1]$[2]:[3]10)
The first blank locks column B with B, the second locks row 2 with 2, and the third is column C for the range end.