Dashboard Mode - Why clean data drives accurate reports
Business Question
How does cleaning sales data improve the accuracy of our monthly sales reports?
How does cleaning sales data improve the accuracy of our monthly sales reports?
| Order ID | Product | Region | Sales Amount | Order Date |
|---|---|---|---|---|
| 1001 | Widget A | East | 200 | 2024-01-15 |
| 1002 | Widget B | West | 150 | 2024-01-20 |
| 1003 | Widget A | East | 2024-01-25 | |
| 1004 | Widget C | North | 300 | 2024-02-05 |
| 1005 | Widget B | West | -50 | 2024-02-10 |
| 1006 | Widget A | East | 250 | 2024-02-15 |
| 1007 | Widget C | South | 400 | 2024-02-20 |
Total Sales Raw = SUM('Sales'[Sales Amount])Total Sales Clean = CALCULATE(SUM('Sales'[Sales Amount]), FILTER('Sales', NOT(ISBLANK('Sales'[Sales Amount])) && 'Sales'[Sales Amount] > 0))Sales by Region = CALCULATE(SUM('Sales'[Sales Amount]), FILTER('Sales', NOT(ISBLANK('Sales'[Sales Amount])) && 'Sales'[Sales Amount] > 0))+----------------------+-----------------------+ | Total Sales Raw | Total Sales Clean | | (KPI Card) | (KPI Card) | +----------------------+-----------------------+ | Sales by Region (Bar Chart) | | | +----------------------------------------------+ | Orders with Issues (Table) | +----------------------------------------------+
A slicer on Order Date allows filtering the entire dashboard by month or date range. When the date filter changes, both KPI cards, the bar chart, and the issues table update to reflect only the selected period's data.
Clicking on a region in the bar chart filters the issues table to show only problematic orders from that region.
If you add a filter to show only Region = East, which components update?