Dashboard Mode - Running total
Business Question
How can we track the cumulative sales over months to see the total sales growing over time?
Jump into concepts and practice - no test required
How can we track the cumulative sales over months to see the total sales growing over time?
| Month | Sales |
|---|---|
| January | 100 |
| February | 150 |
| March | 200 |
| April | 250 |
| May | 300 |
| June | 350 |
SUM([Sales])RUNNING_SUM(SUM([Sales]))+----------------------+-------------------------+ | Total Sales | Monthly Sales | | (KPI Card) | (Line Chart) | +----------------------+-------------------------+ | Running Total of Sales (Line Chart) | +---------------------------------------------------------+
A filter for Month allows selecting a range of months. When the filter changes, both line charts and the KPI card update to show sales and running totals only for the selected months.
If you add a filter to show only months from March to June, which components update and what is the new total sales?
RUNNING_SUM() function do in Tableau?Date | Sales
Jan 1 | 100
Jan 2 | 150
Jan 3 | 200RUNNING_SUM(SUM([Sales]))?RUNNING_SUM(SUM([Sales])) but the values reset unexpectedly for each category. What is the likely cause?