Complete the formula to keep the column fixed but allow the row to change when copied.
=SUM([1]1:B1)
Using $A1 fixes the column A but allows the row number to change when copied.
Complete the formula to fix the row but allow the column to change when copied.
=AVERAGE(A[1]:D5)Using A$5 fixes the row 5 but allows the column to change when copied.
Fix the error in the formula to correctly fix the column and allow the row to change.
=SUM([1]1:C1)
The correct mixed reference to fix the column A and allow the row to change is $A1.
Fill both blanks to create a formula that fixes the row in the first cell and fixes the column in the second cell.
=SUM(A[1]:[2]1)
A$5 fixes the row 5 in the first cell, and $C1 fixes the column C in the second cell.
Fill all three blanks to create a dictionary comprehension that maps each column letter to a mixed reference fixing the row 10 but allowing the column to change.
{ [1]: [2][3] for [1] in ['A', 'B', 'C'] }The variable col is used as key and in the value. The value uses col$10 to fix row 10 but allow column to change. Since col is a string like 'A', the correct mixed reference is col & "$10" in Excel formulas, but here we simulate with string keys and values.