Complete the formula to keep the reference to cell A1 fixed when copying.
=SUM([1], B2)Using $A$1 locks both the column and row, so the reference stays fixed when copying the formula.
Complete the formula to multiply the value in B2 by the fixed value in cell C1.
=B2*[1]The absolute reference $C$1 keeps the reference fixed when copying the formula to other cells.
Fix the error in the formula to always refer to cell D4 when copied.
=SUM(A1:D[1])Using 4 keeps the row number 4 fixed in the range when copying the formula.
Fill both blanks to create a formula that sums from fixed cell A1 to the current row in column B.
=SUM([1]:B[2])
$1 does not adjust the range dynamically.The start cell $A$1 is fixed, and 1 creates a relative row reference that adjusts to the current row for the end of the range.
Fill all three blanks to create a formula that multiplies the fixed price in A1 by the quantity in the current row of column B, only if quantity is greater than zero.
=IF(B[1] [2] 0, $A$1 * B[3], 0)
$1 instead of 1 makes the formula not adjust when copied.1 creates relative references to the current row for B cells (e.g., B1, B2 when copied), > checks if quantity is greater than zero, and the formula multiplies fixed price $A$1 by quantity.