0
0
Tableaubi_tool~20 mins

Dimensions vs measures concept in Tableau - Practice Questions

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Dimensions vs Measures Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Identify the correct definition of a measure in Tableau
In Tableau, which of the following best describes a measure?
AA field that contains text descriptions or labels.
BA field that contains categorical data used to segment or group data.
CA field that stores date and time information only.
DA field that contains numerical data which can be aggregated or used in calculations.
Attempts:
2 left
💡 Hint
Measures are usually numbers you can add, average, or count.
🧠 Conceptual
intermediate
2:00remaining
Choose the correct example of a dimension in Tableau
Which of the following is an example of a dimension in Tableau?
AAverage profit margin percentage.
BSales amount for each transaction.
CCustomer names used to group sales data.
DTotal number of products sold.
Attempts:
2 left
💡 Hint
Dimensions are used to slice and dice data, often text or categories.
dax_lod_result
advanced
3:00remaining
Determine the output of this Tableau LOD expression
Given a dataset with sales data, what is the result of this Tableau LOD expression?
{ 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?
AIt returns the total sales for each region repeated on every row belonging to that region (1000 for East rows, 2000 for West rows).
BIt returns the grand total sales across all regions (3000) on every row.
CIt returns the sum of sales for each individual row only.
DIt causes an error because FIXED LOD cannot be used with SUM.
Attempts:
2 left
💡 Hint
FIXED LOD calculates aggregation at the specified dimension level.
visualization
advanced
2: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?
AA stacked bar chart showing sales by category with colors representing regions.
BA line chart showing sales over time.
CA scatter plot with sales on X-axis and categories on Y-axis.
DA pie chart showing sales distribution for a single category.
Attempts:
2 left
💡 Hint
Think about comparing multiple categories and regions side by side.
🔧 Formula Fix
expert
3: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:
IF [Customer Segment] = 'Corporate' THEN AVG([Sales]) ELSE SUM([Sales]) END

What is the main issue with this calculation?
AThe calculation will return the total sales for all segments regardless of condition.
BYou cannot use aggregation functions like AVG and SUM inside an IF statement without proper aggregation context.
CThe calculation will cause a syntax error because ELSE is missing a condition.
DThe calculation will work correctly because IF supports aggregations inside.
Attempts:
2 left
💡 Hint
Aggregations inside conditional statements need careful handling in Tableau.