Complete the formula to sum the values in cells A1 to A5.
=SUM([1])The correct way to sum a range of cells is to use a range reference like A1:A5. This tells the formula to include all cells from A1 through A5.
Complete the formula to multiply the value in cell B1 by 10 using an absolute reference for B1.
= [1] * 10
Using $B$1 makes the reference absolute, so if you copy the formula elsewhere, it always points to cell B1.
Fix the error in the formula to correctly sum cells from C1 to C3 using an absolute column and relative row reference.
=SUM([1])The reference $C1:$C3 fixes the column C absolutely but allows the rows to adjust if copied. This matches the requirement.
Fill both blanks to create a formula that multiplies the value in D2 by the value in an absolute cell E1.
= [1] * [2]
The formula multiplies the relative cell D2 by the absolute cell $E$1. The absolute reference ensures the formula always uses the value in E1.
Fill both blanks to create a formula that sums the range from A1 to A{{BLANK_1}} and multiplies by the value in absolute cell B{{BLANK_2}}.
=SUM(A1:A[1]) * B[2]
The formula sums cells from A1 to A5 and multiplies by the value in absolute cell B$5. The dollar sign before 5 makes the row absolute.