0
0
Excelspreadsheet~15 mins

Table references in formulas 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 a clear monthly sales summary using Excel tables to make formulas easier to read and update.
📊 Data: You have a sales data table with columns: Date, Region, Product, Units Sold, and Unit Price.
🎯 Deliverable: Create an Excel table from the data and use table references in formulas to calculate Total Sales per row and total sales per region.
Progress0 / 4 steps
Sample Data
DateRegionProductUnits SoldUnit Price
2024-01-05NorthApples101.20
2024-01-07SouthBananas150.80
2024-01-10EastOranges81.50
2024-01-12WestApples121.20
2024-01-15NorthBananas200.80
2024-01-18SouthOranges51.50
2024-01-20EastApples71.20
2024-01-22WestBananas100.80
1
Step 1: Select the data range including headers and convert it into an Excel table.
Select cells A1:E9, then go to Insert > Table, check 'My table has headers', and click OK.
Expected Result
Data is formatted as a table named 'Table1' with filter arrows on headers.
2
Step 2: Add a new column named 'Total Sales' to the table to calculate sales per row.
In the first cell under 'Total Sales' column, enter formula: =[@[Units Sold]]*[@[Unit Price]]
Expected Result
Each row shows the product of Units Sold and Unit Price, e.g., first row shows 12.00.
3
Step 3: Create a summary table listing each Region and total sales for that region using table references.
List regions in a new area, then use formula: =SUMIFS(Table1[Total Sales], Table1[Region], "North") for North region and similarly for others.
Expected Result
Total sales for North is 28.00, South is 19.50, East is 20.40, West is 22.40.
4
Step 4: Use structured references in formulas to keep formulas clear and easy to update when data changes.
All formulas use table names and column headers like Table1[Total Sales] and [@Units Sold].
Expected Result
Formulas automatically adjust if rows are added or removed from the table.
Final Result
Region   | Total Sales
---------|------------
North    | 28.00
South    | 19.50
East     | 20.40
West     | 22.40
North region has the highest total sales of 28.00.
Using table references makes formulas easier to read and maintain.
Total Sales column correctly calculates sales per row using structured references.
Bonus Challenge

Create a dynamic drop-down list of Regions and show total sales for the selected region using table references.

Show Hint
Use Data Validation for the drop-down and the SUMIFS formula referencing the selected region cell.