Complete the formula to sum the values in the named range called 'Sales'.
=SUM([1])The named range 'Sales' can be used directly in formulas like =SUM(Sales) to sum all values in that range.
Complete the formula to calculate the average of the named range 'Expenses'.
=AVERAGE([1])Use the named range 'Expenses' directly inside the AVERAGE function to calculate the average.
Fix the error in the formula to count how many cells in the named range 'Inventory' are greater than 10.
=COUNTIF([1], ">10")
Named ranges should be used without quotes or parentheses in formulas. So use Inventory directly.
Fill both blanks to create a formula that sums values in the named range 'Revenue' only if they are greater than 100.
=SUMIF([1], [2])
The formula =SUMIF(Revenue, ">100") sums all values in the named range 'Revenue' that are greater than 100.
Fill all three blanks to create a formula that sums values in the named range 'Revenue' where the corresponding values in 'Region' are 'North' and in 'Quarter' are 'Q1'.
=SUMIFS([1], [2], "North", [3], "Q1")
The formula =SUMIFS(Revenue, Region, "North", Quarter, "Q1") sums values from 'Revenue' meeting both criteria using the parallel named ranges 'Region' and 'Quarter'.