Dashboard Mode - Why lookups connect datasets
Dashboard Goal
Understand how lookup formulas connect two datasets to show combined information in one place.
Understand how lookup formulas connect two datasets to show combined information in one place.
| Product ID | Product Name | Category |
|---|---|---|
| 101 | Notebook | Stationery |
| 102 | Pen | Stationery |
| 103 | Water Bottle | Accessories |
| 104 | Backpack | Accessories |
| 105 | Desk Lamp | Electronics |
| Order ID | Product ID | Quantity |
|---|---|---|
| 5001 | 101 | 2 |
| 5002 | 103 | 1 |
| 5003 | 105 | 4 |
| 5004 | 102 | 5 |
| 5005 | 104 | 3 |
=VLOOKUP(B2, $A$2:$C$6, 2, FALSE)=VLOOKUP(B2, $A$2:$C$6, 3, FALSE)=SUMIF(E$2:E$6, "Stationery", C$2:C$6)=COUNTA(A2:A6)=SUM(C2:C6)+----------------------+-----------------------+ | KPI Cards | Order Details | | +------------------+ | +-------------------+ | | | Total Orders | | | Order ID | Product | | | | Total Quantity | | | Product ID | Name | | | +------------------+ | | Quantity | | | | | +-------------------+ | +----------------------+-----------------------+ | Category Sales Summary (Table) | | +--------------------------------------------+ | | | Category | Total Quantity Sold | | | +--------------------------------------------+ | +------------------------------------------------+
Add a filter dropdown for Category. When you select a category, the Order Details Table and Category Sales Summary update to show only orders and totals for that category. The KPI cards update to reflect counts and sums for the filtered data.
If you add a filter to show only Accessories category, which orders appear in the Order Details Table? What is the total quantity sold for Accessories?