Dashboard Mode - Loading to worksheet or data model
Goal
Understand how to load data either directly into an Excel worksheet or into the Excel Data Model for better analysis.
Understand how to load data either directly into an Excel worksheet or into the Excel Data Model for better analysis.
| Order ID | Product | Category | Quantity | Price |
|---|---|---|---|---|
| 1001 | Notebook | Stationery | 5 | 2.5 |
| 1002 | Pen | Stationery | 10 | 1.2 |
| 1003 | Desk Lamp | Electronics | 2 | 15 |
| 1004 | Chair | Furniture | 1 | 45 |
| 1005 | Monitor | Electronics | 3 | 120 |
| 1006 | Stapler | Stationery | 4 | 5 |
=SUMPRODUCT(D2:D7,E2:E7)Total Sales = SUMX(Sales, Sales[Quantity] * Sales[Price])=[@Quantity]*[@Price]Total Sales grouped by Category from data model.+----------------------+----------------------+ | Total Sales (WS) | Total Sales (DM) | | 479.5 | 479.5 | +----------------------+----------------------+ | Pivot Table: Sales by Category | | +------------------------------+ | | | Category | Total Sales | | | | Stationery | 44.5 | | | | Electronics | 390 | | | | Furniture | 45 | | | +------------------------------+ | +-----------------------------------------------+
Adding a slicer for Category filters both pivot tables simultaneously. Selecting a category updates the total sales KPIs and pivot tables to show only data for that category.
Example: Selecting Electronics shows total sales 390 in both KPIs and pivot tables.
If you add a filter to show only Stationery category, which components update and what is the new total sales?