0
0
Excelspreadsheet~8 mins

Why lookups connect related data in Excel - Dashboard Impact

Choose your learning style9 modes available
Dashboard Mode - Why lookups connect related data
Business Question

How can we connect sales data with product details to see product names and prices alongside sales?

Sample Data
Order IDProduct IDQuantity
1001P013
1002P035
1003P022
1004P041
1005P014

Product IDProduct NamePrice
P01Notebook2.5
P02Pen1.2
P03Eraser0.5
P04Ruler1.0
Dashboard Components
  • Sales Table with Product Details: Shows Order ID, Product ID, Quantity, Product Name, Price, and Total Price.
    Formula for Product Name (cell D2): =VLOOKUP(B2, $G$2:$I$5, 2, FALSE)
    Formula for Price (cell E2): =VLOOKUP(B2, $G$2:$I$5, 3, FALSE)
    Formula for Total Price (cell F2): =C2 * E2
  • Total Sales: Sum of all Total Price values.
    Formula: =SUM(F2:F6)
Dashboard Layout
+-----------------------------+
| Sales Table with Product     |
| Details (Order, Product, Qty,|
| Name, Price, Total Price)    |
|                             |
| +-------------------------+ |
| | Order | Prod | Qty | ... | |
| +-------------------------+ |
+-----------------------------+
+-----------------------------+
| Total Sales: $XX.XX          |
+-----------------------------+
Interactivity

Adding a filter by Product ID or Product Name will update the Sales Table and Total Sales to show only matching orders and their totals.

Self Check

If you add a filter to show only Product ID = 'P01', which orders and totals will update in the Sales Table and Total Sales?

Key Result
Connect sales orders with product details using VLOOKUP to show product names, prices, and calculate total sales.