Dashboard Mode - Why data transformation ensures quality
Business Question
How does transforming raw sales data improve its quality for better decision-making?
How does transforming raw sales data improve its quality for better decision-making?
| Order ID | Product | Quantity | Price | Order Date | Region |
|---|---|---|---|---|---|
| 1001 | Widget A | 10 | 20 | 2024-01-05 | East |
| 1002 | Widget B | 15 | 2024-01-07 | West | |
| 1003 | Widget A | 5 | 20 | 2024-01-08 | East |
| 1004 | Widget C | 8 | 2024-01-10 | North | |
| 1005 | Widget B | 12 | 15 | 2024-01-12 | West |
| 1006 | Widget A | 7 | 20 | 2024-01-15 | East |
| 1007 | Widget C | 3 | 25 | 2024-01-18 | North |
Total Sales = SUMX(FILTER(Sales, NOT(ISBLANK(Sales[Quantity])) && NOT(ISBLANK(Sales[Price]))), Sales[Quantity] * Sales[Price])Sales by Region = SUMX(FILTER(Sales, NOT(ISBLANK(Sales[Quantity])) && NOT(ISBLANK(Sales[Price]))), Sales[Quantity] * Sales[Price]) grouped by RegionInvalid Rows = COUNTROWS(FILTER(Sales, ISBLANK(Sales[Quantity]) || ISBLANK(Sales[Price])))+-------------------+-----------------------+ | Total Sales | Number of Invalid | | (KPI) | Rows (KPI) | +-------------------+-----------------------+ | | | Sales by Region (Bar Chart) | | | +---------------------------------------+ | | | Cleaned Sales Data Table | | | +---------------------------------------+
A slicer for Region filters the bar chart and cleaned sales data table. Selecting a region updates total sales and invalid rows count accordingly, showing only data for that region.
If you add a filter for Region = East, which components update?