Complete the formula to always refer to cell A1, even when copied.
=SUM([1])Using $A$1 locks both the column and row, so the reference does not change when copied.
Complete the formula to multiply the value in B2 by the fixed value in C1.
=B2*[1]Using $C$1 keeps the reference fixed to cell C1 when copying the formula.
Fix the error in the formula to always sum the range A1:A5 when copied.
=SUM([1])Using $A$1:$A$5 locks the entire range so it does not change when copied.
Fill both blanks to create a formula that multiplies the value in D3 by the fixed value in E2.
=D3*[1]+[2]
The first blank uses $E$2 to keep the reference fixed. The second blank uses E2 as a relative reference.
Fill all three blanks to create a formula that sums a fixed range and multiplies by a fixed cell.
=SUM([1])*[2]+[3]
The range $A$1:$A$10 is fixed for summing. The cells $B$1 and $C$1 are fixed for multiplication and addition.