Dashboard Mode - Replace values
Dashboard Goal
This dashboard helps us see sales data where missing or unclear product categories are replaced with a clear label "Unknown Category". This makes the data easier to understand and analyze.
This dashboard helps us see sales data where missing or unclear product categories are replaced with a clear label "Unknown Category". This makes the data easier to understand and analyze.
| Order ID | Product | Category | Sales |
|---|---|---|---|
| 1001 | Notebook | Stationery | 150 |
| 1002 | Pen | 50 | |
| 1003 | Desk Lamp | Electronics | 200 |
| 1004 | Chair | 300 | |
| 1005 | Paper | Stationery | 100 |
Total Sales = SUM(Sales[Sales])Category Clean = IF(ISBLANK(Sales[Category]), "Unknown Category", Sales[Category])Category Clean and Sales summed.| Category Clean | Sales |
|---|---|
| Stationery | 250 |
| Unknown Category | 350 |
| Electronics | 200 |
Category Clean field on X-axis and sum of Sales on Y-axis.+----------------------+----------------------+ | Total Sales | Sales by Category | | (KPI Card) | (Bar Chart) | +----------------------+----------------------+ | Sales by Category with Replaced Values Table | +------------------------------------------------------------------------+
Filters on date or region (if added) will update all components together. The replacement of blank categories with "Unknown Category" ensures the table and chart always show all sales data clearly, even if some categories are missing.
If you add a filter to show only sales above 100, which components update and what happens to the "Unknown Category" sales?