Dashboard Mode - Why date handling is common in business
Business Question
How can businesses use dates to track sales over time and understand trends?
How can businesses use dates to track sales over time and understand trends?
| Date | Sales | Region |
|---|---|---|
| 2024-01-01 | 100 | East |
| 2024-01-02 | 150 | West |
| 2024-01-03 | 200 | East |
| 2024-01-04 | 130 | North |
| 2024-01-05 | 170 | West |
| 2024-01-06 | 160 | East |
| 2024-01-07 | 180 | North |
=SUM(B2:B8) shows total sales for the week. Result: 1090=AVERAGE(B2:B8) calculates average sales per day. Result: 155.71=SUMIFS(B2:B8,C2:C8,"East") and similar formulas for other regions:East: =SUMIFS(B2:B8,C2:C8,"East") = 460West: =SUMIFS(B2:B8,C2:C8,"West") = 320North: =SUMIFS(B2:B8,C2:C8,"North") = 310=TEXT(A2,"dddd") and summarize sales by day to find best sales days.+----------------------+----------------------+ | Total Sales (KPI) | Average Daily Sales | | | (KPI) | +----------------------+----------------------+ | Sales by Region Table | | | +--------------------------------------------+ | Sales Trend Chart (Line chart) | +--------------------------------------------+ | Day of Week Sales Summary | +--------------------------------------------+
Add a date filter (e.g., select a date range). When you change the date range, all components update to show sales only for those dates. For example, total sales, average sales, sales by region, and the sales trend chart all reflect the selected dates.
Also, a region filter can be added to focus on sales from one region. This updates the total, average, and trend chart accordingly.
If you add a filter to show only sales from the East region, which components update?