You have a named range SalesData referring to cells B2:B10. What is the result of the formula =SUM(SalesData) if the cells contain the numbers 1 through 9?
Recall that SUM adds all numbers in the range.
The named range SalesData covers cells B2 to B10, which contain numbers 1 to 9. The sum of numbers 1 through 9 is 45.
You have a named range Expenses referring to C2:C12. You want to find the average expense. Which formula correctly uses the named range?
Think about which function calculates the average directly.
The AVERAGE function calculates the mean of the numbers in the named range Expenses. Other options either count or sum but do not directly calculate the average.
You have a named range DataRange referring to D2:D6. You insert a new row above row 2. What will DataRange refer to after the insertion?
Think about how named ranges adjust when rows are inserted.
When you insert a row above the first row of a named range, the named range shifts down by one row. So D2:D6 becomes D3:D7.
You have a named range Scores referring to E2:E20. You want to highlight cells in E2:E20 that are above the average score. Which custom formula should you use in conditional formatting?
Remember to use relative references correctly in conditional formatting formulas.
The formula =E2>AVERAGE(Scores) correctly compares each cell in the range to the average of the named range. Using Scores makes the formula dynamic and clear.
In Google Sheets, what is the scope of a named range created in a sheet, and how does it affect its usage in formulas across different sheets?
Think about how named ranges simplify formulas across sheets.
In Google Sheets, named ranges are defined for the entire spreadsheet, so you can use them in formulas on any sheet without redefining them.