Challenge - 5 Problems
Dimensions vs Measures Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate2:00remaining
Identify the correct definition of a measure in Tableau
In Tableau, which of the following best describes a measure?
Attempts:
2 left
💡 Hint
Measures are usually numbers you can add, average, or count.
✗ Incorrect
Measures in Tableau are numeric fields that can be aggregated, such as sums or averages, to analyze data quantitatively.
🧠 Conceptual
intermediate2:00remaining
Choose the correct example of a dimension in Tableau
Which of the following is an example of a dimension in Tableau?
Attempts:
2 left
💡 Hint
Dimensions are used to slice and dice data, often text or categories.
✗ Incorrect
Dimensions are fields like customer names that categorize data and help segment measures.
❓ dax_lod_result
advanced3:00remaining
Determine the output of this Tableau LOD expression
Given a dataset with sales data, what is the result of this Tableau LOD expression?
Assuming the data has regions 'East' and 'West' with sales 1000 and 2000 respectively, what does this expression return when placed on a view showing all sales rows?
{ FIXED [Region] : SUM([Sales]) }Assuming the data has regions 'East' and 'West' with sales 1000 and 2000 respectively, what does this expression return when placed on a view showing all sales rows?
Attempts:
2 left
💡 Hint
FIXED LOD calculates aggregation at the specified dimension level.
✗ Incorrect
The FIXED LOD expression calculates the sum of sales per region and repeats that value on every row for that region.
❓ visualization
advanced2:00remaining
Choose the best visualization to compare sales by category and region
You want to compare total sales (a measure) across different product categories and regions (dimensions). Which Tableau visualization type is best suited for this?
Attempts:
2 left
💡 Hint
Think about comparing multiple categories and regions side by side.
✗ Incorrect
A stacked bar chart allows easy comparison of sales across categories and regions simultaneously.
🔧 Formula Fix
expert3:00remaining
Identify the error in this Tableau calculated field mixing dimensions and measures
This calculated field is intended to calculate average sales per customer segment:
What is the main issue with this calculation?
IF [Customer Segment] = 'Corporate' THEN AVG([Sales]) ELSE SUM([Sales]) END
What is the main issue with this calculation?
Attempts:
2 left
💡 Hint
Aggregations inside conditional statements need careful handling in Tableau.
✗ Incorrect
Tableau requires consistent aggregation levels; mixing aggregated and non-aggregated fields inside IF causes errors.