0
0
Tableaubi_tool~20 mins

Pareto analysis in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Pareto Analysis Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
dax_lod_result
intermediate
2:00remaining
Calculate cumulative percentage for Pareto analysis
You have a sales dataset with categories and sales amounts. Which Tableau calculated field formula correctly computes the cumulative percentage of total sales by category for a Pareto chart?
ARUNNING_SUM(TOTAL(SUM([Sales]))) / SUM([Sales])
BSUM([Sales]) / RUNNING_SUM(TOTAL([Sales]))
CRUNNING_SUM(SUM([Sales])) / TOTAL(SUM([Sales]))
DTOTAL(SUM([Sales])) / RUNNING_SUM(SUM([Sales]))
Attempts:
2 left
💡 Hint
Think about how to accumulate sales and then divide by total sales to get a percentage.
visualization
intermediate
2:00remaining
Best visualization for Pareto analysis
Which visualization best represents a Pareto analysis in Tableau to show the 80/20 rule clearly?
AA bar chart sorted descending by category sales with a line chart overlay showing cumulative percentage
BA pie chart showing sales percentage by category
CA scatter plot of sales vs. category
DA stacked bar chart showing sales by category and region
Attempts:
2 left
💡 Hint
Pareto analysis combines individual values and their cumulative impact.
data_modeling
advanced
2:30remaining
Data preparation for Pareto analysis with multiple dimensions
You want to perform Pareto analysis on sales by product category and region. What is the best data modeling approach in Tableau to enable this?
ACreate separate data sources for category and region and blend them in Tableau
BUse a pivoted data source with sales as columns and categories as rows
CAggregate sales by category only and ignore region for Pareto analysis
DUse a single data source with category, region, and sales columns; then create calculated fields for cumulative sales by category and region combined
Attempts:
2 left
💡 Hint
Think about how to analyze combined dimensions in one dataset.
🔧 Formula Fix
advanced
2:00remaining
Identify the error in Pareto cumulative calculation
A Tableau user wrote this calculated field for cumulative sales percentage: RUNNING_SUM(SUM([Sales])) / SUM([Sales]). What is the issue with this formula?
Tableau
RUNNING_SUM(SUM([Sales])) / SUM([Sales])
ARUNNING_SUM cannot be used with SUM aggregation
BIt divides cumulative sales by the current row sales, not total sales, causing incorrect percentages
CThe formula is correct and will produce the expected cumulative percentage
DSUM([Sales]) should be replaced with TOTAL(SUM([Sales])) to fix syntax
Attempts:
2 left
💡 Hint
Check what the denominator represents in the formula.
🧠 Conceptual
expert
3:00remaining
Understanding Pareto principle application in BI
In a Pareto analysis dashboard, you notice that 30% of categories contribute to 90% of sales. What does this imply about your data and business focus?
AA small number of categories generate most sales, so focusing on them can improve business efficiency
BSales are evenly distributed across all categories, so no category is more important
CThe data is incorrect because Pareto always shows 80/20 split
DYou should ignore the top categories and focus on the remaining 70% for growth
Attempts:
2 left
💡 Hint
Pareto principle means a few causes create most effects.