Dashboard Mode - KPI visual
Dashboard Goal
Show the total sales amount and compare it to the sales target to quickly see if sales are on track.
Show the total sales amount and compare it to the sales target to quickly see if sales are on track.
| OrderID | Product | SalesAmount | SalesTarget |
|---|---|---|---|
| 1001 | Chair | 150 | 200 |
| 1002 | Table | 300 | 200 |
| 1003 | Lamp | 100 | 200 |
| 1004 | Sofa | 450 | 200 |
| 1005 | Desk | 200 | 200 |
Total Sales = SUM(Sales[SalesAmount])Sales Target = 200 * COUNTROWS(Sales)Sales vs Target = [Total Sales] - [Sales Target]
+----------------+----------------+----------------+
| Total Sales | Sales Target | Sales vs Target|
| [ 1200 ] | [ 1000 ] | [ 200 ] |
+----------------+----------------+----------------+
| KPI Visual (Total Sales vs Target) |
| [Green Indicator] |
+----------------------------------------------------------------+
Adding a slicer for Product allows filtering the sales data. When a product is selected, all KPI cards and the KPI visual update to show sales and target only for that product.
If you add a filter for Product = 'Table', which components update and what are their new values?