0
0
Google Sheetsspreadsheet~20 mins

Named ranges in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Named Range Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Using Named Ranges in SUM Formula

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?

A45
B0
C9
DError: Named range not found
Attempts:
2 left
💡 Hint

Recall that SUM adds all numbers in the range.

Function Choice
intermediate
2:00remaining
Choosing the Correct Function with Named Ranges

You have a named range Expenses referring to C2:C12. You want to find the average expense. Which formula correctly uses the named range?

A=AVERAGE(Expenses)
B=COUNT(Expenses)
C=SUM(Expenses)/COUNTIF(Expenses, ">0")
D=MAX(Expenses)
Attempts:
2 left
💡 Hint

Think about which function calculates the average directly.

🎯 Scenario
advanced
2:00remaining
Impact of Moving Named Range Cells

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?

AError: Named range invalid
BD2:D6
CD1:D5
DD3:D7
Attempts:
2 left
💡 Hint

Think about how named ranges adjust when rows are inserted.

data_analysis
advanced
2:00remaining
Using Named Ranges in Conditional Formatting

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?

A=E2>AVERAGE(E$2:E$20)
B=Scores>AVERAGE(E2:E20)
C=E2>AVERAGE(Scores)
D=E2>AVERAGE(E2:E20)
Attempts:
2 left
💡 Hint

Remember to use relative references correctly in conditional formatting formulas.

🧠 Conceptual
expert
2:00remaining
Named Range Scope and Usage

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?

ANamed ranges have sheet-level scope and can only be used in formulas on the sheet where they were created.
BNamed ranges have spreadsheet-wide scope and can be used in formulas on any sheet.
CNamed ranges have scope limited to the first sheet and cannot be used elsewhere.
DNamed ranges must be redefined on each sheet to be used in formulas.
Attempts:
2 left
💡 Hint

Think about how named ranges simplify formulas across sheets.