0
0
Excelspreadsheet~15 mins

Named ranges in Excel - Real Business Scenario

Choose your learning style9 modes available
Scenario Mode
👤 Your Role: You are a sales analyst at a retail company.
📋 Request: Your manager wants you to create a clear and easy-to-update sales summary using named ranges to simplify formulas.
📊 Data: You have monthly sales data for different products including Product Name, Units Sold, and Sales Amount.
🎯 Deliverable: Create a summary table that calculates total units sold and total sales amount using named ranges for the data columns.
Progress0 / 7 steps
Sample Data
Product NameUnits SoldSales Amount
Apples120360
Bananas150450
Cherries90270
Dates60180
Elderberries30150
Figs80240
Grapes110330
1
Step 1: Select the range of cells containing the Product Names (A2:A8) and create a named range called 'Products'.
Use the Name Box above the worksheet to type 'Products' and press Enter.
Expected Result
The range A2:A8 is now named 'Products'.
2
Step 2: Select the range of cells containing Units Sold (B2:B8) and create a named range called 'UnitsSold'.
Use the Name Box to type 'UnitsSold' and press Enter.
Expected Result
The range B2:B8 is now named 'UnitsSold'.
3
Step 3: Select the range of cells containing Sales Amount (C2:C8) and create a named range called 'SalesAmount'.
Use the Name Box to type 'SalesAmount' and press Enter.
Expected Result
The range C2:C8 is now named 'SalesAmount'.
4
Step 4: Create a summary table with two rows: 'Total Units Sold' and 'Total Sales Amount'.
In a new area, type 'Total Units Sold' in one cell and 'Total Sales Amount' below it.
Expected Result
Summary table labels are ready for formulas.
5
Step 5: In the cell next to 'Total Units Sold', enter a formula to sum the 'UnitsSold' named range.
=SUM(UnitsSold)
Expected Result
The cell shows 640, the total units sold.
6
Step 6: In the cell next to 'Total Sales Amount', enter a formula to sum the 'SalesAmount' named range.
=SUM(SalesAmount)
Expected Result
The cell shows 1980, the total sales amount.
7
Step 7: Test updating the data by changing the Units Sold for 'Apples' from 120 to 130 and verify the summary updates automatically.
Change cell B2 from 120 to 130.
Expected Result
Total Units Sold updates to 650 automatically.
Final Result
Summary Table
-----------------
Total Units Sold: 640
Total Sales Amount: 1980
Using named ranges makes formulas easier to read and update.
The total units sold for all products is 640.
The total sales amount for all products is 1980.
Updating data in the named ranges automatically updates the summary.
Bonus Challenge

Create a named range for the entire data table and use it to create a dynamic dropdown list of products for data validation.

Show Hint
Name the entire table range (A2:C8) as 'SalesData'. Then use Data Validation with the formula =Products for the dropdown.