Dashboard Mode - Why time-based analysis drives decisions
Business Question
How do sales change over time, and which months show growth or decline? This helps decide when to boost marketing or stock inventory.
How do sales change over time, and which months show growth or decline? This helps decide when to boost marketing or stock inventory.
| Month | Sales |
|---|---|
| January | 100 |
| February | 150 |
| March | 130 |
| April | 170 |
| May | 160 |
| June | 180 |
Total Sales = SUM(SalesData[Sales])Sales Change = SUM(SalesData[Sales]) - CALCULATE(SUM(SalesData[Sales]), PREVIOUSMONTH(SalesData[Month]))+----------------------+-----------------------+ | Total Sales | Sales Over Months | | (KPI Card) | (Line Chart) | +----------------------+-----------------------+ | Month-over-Month | | | Sales Change | | | (Bar Chart) | | +----------------------+-----------------------+
A slicer for selecting months lets you focus on specific periods. When you pick months, all visuals update to show data only for those months. This helps spot trends or dips in chosen time frames.
If you add a filter to show only March to June, which components update and what happens?