0
0
Excelspreadsheet~15 mins

Why reference types matter in Excel - Business Case Study

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 sales summary that updates automatically when new sales data is added.
📊 Data: You have a table with sales data including Date, Region, Product, and Sales Amount.
🎯 Deliverable: Create a summary table that shows total sales by Region and Product, which updates correctly when new rows are added.
Progress0 / 5 steps
Sample Data
DateRegionProductSales Amount
2024-01-01NorthApples100
2024-01-02SouthOranges150
2024-01-03NorthOranges200
2024-01-04EastApples120
2024-01-05WestBananas90
2024-01-06SouthBananas110
2024-01-07EastOranges130
2024-01-08WestApples80
1
Step 1: Convert the sales data range into an Excel Table to make references dynamic.
Select the data range including headers, then press Ctrl+T and confirm to create a Table named 'SalesData'.
Expected Result
The data is now a Table named 'SalesData' that expands automatically when new rows are added.
2
Step 2: Create a summary table with Regions as rows and Products as columns.
List unique Regions in cells G2:G5 and unique Products in H1:J1.
Expected Result
Regions: North, South, East, West listed vertically; Products: Apples, Oranges, Bananas listed horizontally.
3
Step 3: Use SUMIFS formula with structured references to calculate total sales for each Region and Product combination.
In cell H2 enter: =SUMIFS(SalesData[Sales Amount], SalesData[Region], $G2, SalesData[Product], H$1) and copy across and down.
Expected Result
Each cell shows the total sales for the matching Region and Product, e.g., North-Apples = 100, South-Oranges = 150.
4
Step 4: Add a new sales entry below the Table to test if the summary updates automatically.
Add row: 2024-01-09, North, Bananas, 140 directly below the last Table row.
Expected Result
The Table expands automatically and the summary cell for North-Bananas updates to 140.
5
Step 5: Explain why using Table structured references is better than fixed cell ranges.
Structured references like SalesData[Sales Amount] adjust automatically when data grows, unlike fixed ranges like C2:C9.
Expected Result
Summary updates correctly without changing formulas when new data is added.
Final Result
       Apples  Oranges  Bananas
North    100      200       140
South      0      150       110
East     120      130         0
West      80        0        90
Using Excel Tables with structured references keeps formulas dynamic.
Summary totals update automatically when new sales data is added.
Fixed cell ranges would require manual formula updates for new data.
Bonus Challenge

Create a PivotTable from the sales data to show total sales by Region and Product with slicers for Date filtering.

Show Hint
Insert > PivotTable, use SalesData as source, drag Region to Rows, Product to Columns, Sales Amount to Values, and add a Date slicer.