Dashboard Mode - Arithmetic calculations
Dashboard Goal
Understand sales performance by calculating total sales, average sales per order, and profit margin using simple arithmetic calculations.
Jump into concepts and practice - no test required
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:
[Sales] and [Quantity] to calculate total revenue?[Sales] * [Quantity] is correct.[Sales] * [Quantity] -> Option ASUM([Sales]) / COUNT([Order ID]) -> Option ASUM([Profit]) / SUM([Sales])SUM([Sales] + [Profit])SUM([Sales]) + SUM([Profit]) to sum each field first, then add results.SUM([Sales]) + SUM([Profit]) -> Option BSUM([Profit]) / SUM([Sales]) * 100 -> Option D