0
0
Tableaubi_tool~20 mins

Running total in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Running Total Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
dax_lod_result
intermediate
2:00remaining
Calculate Running Total Using Table Calculation
You have monthly sales data in Tableau. Which table calculation formula correctly computes the running total of sales ordered by month?
ASUM([Sales])
BTOTAL(SUM([Sales]))
CWINDOW_SUM(SUM([Sales]), FIRST(), LAST())
DRUNNING_SUM(SUM([Sales]))
Attempts:
2 left
💡 Hint

Think about which function accumulates values over a range.

visualization
intermediate
2:00remaining
Best Visualization for Running Total Trend
You want to show the running total of sales over time to your manager. Which visualization type best shows the cumulative trend clearly?
APie chart showing sales distribution by month
BBar chart showing monthly sales side by side
CLine chart with running total on Y-axis and time on X-axis
DScatter plot of sales vs. month
Attempts:
2 left
💡 Hint

Think about which chart type shows trends over time smoothly.

🧠 Conceptual
advanced
2:00remaining
Understanding Partitioning in Running Totals
In Tableau, you apply a running total table calculation on sales partitioned by region and ordered by month. What happens if you remove the partitioning by region?
AThe running total will show only the first region's sales
BThe running total will accumulate sales across all regions combined over time
CThe calculation will produce an error due to missing partition
DThe running total will reset for each region separately
Attempts:
2 left
💡 Hint

Partitioning controls where the running total resets.

🔧 Formula Fix
advanced
2:00remaining
Fixing Incorrect Running Total Calculation
You created a running total of sales by month but notice the total resets unexpectedly within the same year. Which option explains the likely cause?
AThe calculation is ordered by sales amount instead of date
BThe table calculation is partitioned by month instead of year
CThe running total uses WINDOW_SUM instead of RUNNING_SUM
DThe data source has missing months causing reset
Attempts:
2 left
💡 Hint

Ordering affects how running totals accumulate.

🎯 Scenario
expert
3:00remaining
Running Total with Multiple Dimensions and Filters
You have sales data by region, product category, and month. You want a running total of sales by month that ignores filters on product category but respects filters on region. How do you configure the running total calculation in Tableau?
AUse RUNNING_SUM(SUM([Sales])) with context filter on region and exclude product category filter
BUse RUNNING_SUM(SUM([Sales])) with all filters applied normally
CUse WINDOW_SUM(SUM([Sales])) partitioned by product category and region
DUse RUNNING_SUM(SUM([Sales])) and apply product category filter as context filter
Attempts:
2 left
💡 Hint

Context filters affect calculation order and what data is included.