Dashboard Mode - Compute using (table across, down)
Business Question
How can we analyze monthly sales trends by computing running totals across months and cumulative totals down product categories using Tableau's Compute Using feature?
Jump into concepts and practice - no test required
How can we analyze monthly sales trends by computing running totals across months and cumulative totals down product categories using Tableau's Compute Using feature?
| Product Category | Month | Sales |
|---|---|---|
| Furniture | Jan | 100 |
| Furniture | Feb | 150 |
| Furniture | Mar | 200 |
| Office Supplies | Jan | 80 |
| Office Supplies | Feb | 120 |
| Office Supplies | Mar | 160 |
| Technology | Jan | 200 |
| Technology | Feb | 250 |
| Technology | Mar | 300 |
SUM([Sales])RUNNING_SUM(SUM([Sales]))Table (Across)RUNNING_SUM(SUM([Sales]))Table (Down)+----------------------+-----------------------------+ | Total Sales | Running Total Across Months | | (KPI Card) | (Line Chart) | +----------------------+-----------------------------+ | Cumulative Sales Down | Sales Data Table | | Product Categories | | | (Bar Chart) | | +----------------------+-----------------------------+
Filters on Month or Product Category update all components simultaneously:
If you add a filter to show only February and later months, which components update and how?
Compute Using: Table (Across) do to your calculation?Compute Using: Table (Down), what will the running total do?Compute Using: Table (Across) but the total sums only the first row repeatedly. What is the likely issue?Table (Across) because it calculates left to right across quarters, restarting per row (Product Category). -> Option D