Dashboard Mode - Arithmetic calculations
Dashboard Goal
Understand sales performance by calculating total sales, average sales per order, and profit margin using simple arithmetic calculations.
Understand sales performance by calculating total sales, average sales per order, and profit margin using simple arithmetic calculations.
| Order ID | Sales | Cost | Quantity |
|---|---|---|---|
| 1001 | 200 | 150 | 4 |
| 1002 | 450 | 300 | 10 |
| 1003 | 300 | 200 | 6 |
| 1004 | 150 | 100 | 3 |
| 1005 | 400 | 250 | 8 |
SUM([Sales])AVG([Sales])SUM([Cost])(SUM([Sales]) - SUM([Cost])) / SUM([Sales]) * 100
+----------------+----------------+----------------+
| Total Sales | Average Sales | Profit Margin |
| (KPI Card) | per Order (KPI) | (KPI Card) |
+----------------+----------------+----------------+
| Bar Chart: Sales by Order ID |
| |
+----------------------------------------------------+
| Table: Detailed Orders |
+----------------------------------------------------+
A filter for Order ID allows selecting one or multiple orders. When applied:
If you add a filter to show only Order ID 1002 and 1005, which components update and what are the new Total Sales and Profit Margin?
Answer: