Dashboard Mode - Why clean data enables analysis
Business Question
How does cleaning data improve the accuracy and usefulness of sales analysis?
How does cleaning data improve the accuracy and usefulness of sales analysis?
| Order ID | Product | Quantity | Price | Region |
|---|---|---|---|---|
| 1001 | Pen | 10 | 1.5 | East |
| 1002 | Notebook | 5 | 3 | West |
| 1003 | Pen | abc | 1.5 | East |
| 1004 | Marker | 7 | North | |
| 1005 | Pen | 8 | 1.5 | |
| 1006 | Notebook | 3 | 3 | West |
| 1007 | Marker | 4 | 2 | North |
=SUMPRODUCT(IFERROR(VALUE(C2:C8),0), IFERROR(VALUE(D2:D8),0))=SUMPRODUCT(FILTER(C2:C8, ISNUMBER(C2:C8), ISNUMBER(D2:D8)), FILTER(D2:D8, ISNUMBER(C2:C8), ISNUMBER(D2:D8)))F2: =IF(AND(ISNUMBER(C2), ISNUMBER(D2)), C2*D2, "Invalid")=QUERY(FILTER(A2:E8, ISNUMBER(C2:C8), ISNUMBER(D2:D8), LEN(E2:E8)), "select Col5, sum(Col3*Col4) group by Col5 label sum(Col3*Col4) 'Total Sales'")+----------------------+-----------------------+ | Total Sales (Raw) | Total Sales (Cleaned) | | [KPI] | [KPI] | +----------------------+-----------------------+ | Sales by Region Chart | | [Chart] | +----------------------------------------------------------------+ | Cleaned Data Table | | [Table] | +----------------------------------------------------------------+
User can filter by Region using a dropdown. When a region is selected, the KPI cards, chart, and cleaned data table update to show only data for that region. This helps focus analysis on specific areas.
If you add a filter for Region = West, which components update?