Complete the code to create a named range for cells A1 to A5.
Select cells A1:A5 and define the name as [1].
The name SalesData is a clear and valid named range for the selected cells.
Complete the formula to sum the values in the named range called SalesData.
=SUM([1])Using the named range SalesData inside the SUM function sums all values in that range.
Fix the error in the formula that tries to multiply the named range SalesData by 2.
=SUM([1])*2
The named range SalesData should be used without quotes or parentheses to refer to the range correctly.
Fill both blanks to create a named range called Prices for cells B1 to B10 and use it in a formula to find the average.
Define named range [1] for cells B1:B10 and use formula =AVERAGE([2])
The named range Prices is defined for cells B1:B10 and then used in the AVERAGE formula.
Fill all three blanks to create a named range called Expenses for cells C1 to C12, then calculate the total and multiply by 1.1.
Define named range [1] for cells C1:C12, then use formula =SUM([2])*[3]
The named range Expenses is defined for cells C1:C12, then used in the SUM formula multiplied by 1.1.