0
0
Excelspreadsheet~10 mins

Named ranges in Excel - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to create a named range for cells A1 to A5.

Excel
Select cells A1:A5 and define the name as [1].
Drag options to blanks, or click blank then click option'
AA1toA5
BSheet1
CSalesData
DRange1
Attempts:
3 left
💡 Hint
Common Mistakes
Using cell addresses like 'A1toA5' as the name.
Using sheet names as named ranges.
Including spaces in the name.
2fill in blank
medium

Complete the formula to sum the values in the named range called SalesData.

Excel
=SUM([1])
Drag options to blanks, or click blank then click option'
ASheet1!A1:A5
BSalesData
CA1:A5
DDataRange
Attempts:
3 left
💡 Hint
Common Mistakes
Using cell addresses instead of the named range.
Using incorrect named range names.
Forgetting to remove quotes around the name.
3fill in blank
hard

Fix the error in the formula that tries to multiply the named range SalesData by 2.

Excel
=SUM([1])*2
Drag options to blanks, or click blank then click option'
ASalesData
BSalesData()
CSales Data
D"SalesData"
Attempts:
3 left
💡 Hint
Common Mistakes
Putting the named range in quotes.
Adding parentheses after the named range.
Using spaces inside the named range name.
4fill in blank
hard

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.

Excel
Define named range [1] for cells B1:B10 and use formula =AVERAGE([2])
Drag options to blanks, or click blank then click option'
APrices
BSales
DB1:B10
Attempts:
3 left
💡 Hint
Common Mistakes
Using different names for the range and in the formula.
Using cell addresses inside the formula instead of the named range.
Using invalid names with spaces.
5fill in blank
hard

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.

Excel
Define named range [1] for cells C1:C12, then use formula =SUM([2])*[3]
Drag options to blanks, or click blank then click option'
AExpenses
C1.1
DC1:C12
Attempts:
3 left
💡 Hint
Common Mistakes
Using cell addresses instead of the named range in the formula.
Using inconsistent names for the range and formula.
Forgetting to multiply by 1.1 correctly.