You have a sales dataset with a measure called Sales Amount. You want to calculate the total sales but only for transactions where the Sales Amount is greater than 1000. Which Tableau calculation will correctly apply this measure filter?
Think about how Tableau handles conditional aggregation inside SUM().
Option D correctly sums only the sales amounts greater than 1000 by using an IF inside the aggregation. Option D uses ELSE 0 which is valid but less efficient. Option D is invalid syntax in Tableau. Option D incorrectly applies the condition after aggregation.
You want to create a dashboard showing total sales by product category, but only including sales where the amount is above 500. Which visualization type best communicates this filtered measure data clearly?
Think about which chart type clearly compares categories with filtered totals.
A stacked bar chart with the filter applied clearly shows total sales by category only for sales above 500. Pie charts and scatter plots without filtering do not focus on the filtered measure. Line charts show trends over time, not category totals.
Which statement best explains the difference between measure filters and dimension filters in Tableau?
Think about when the filtering happens in the data flow.
Dimension filters limit the rows before aggregation happens, so they filter raw data. Measure filters apply conditions on aggregated results, so they filter after aggregation.
Given the calculation below, what error will Tableau show?
IF SUM([Profit]) > 1000 THEN [Profit] END
IF SUM([Profit]) > 1000 THEN [Profit] ENDCheck if all parts of the calculation use aggregation consistently.
The calculation mixes an aggregate function SUM([Profit]) with a non-aggregate field [Profit] in the THEN clause, which Tableau does not allow.
You want to create a calculated field that shows the average sales per transaction, but only for product categories where the total sales exceed 10,000. Which Tableau calculation achieves this?
Use a Level of Detail (LOD) expression to calculate total sales per category first.
Option A uses a FIXED LOD to calculate total sales per category, then filters categories with total sales above 10,000 before calculating average sales. Option A filters on aggregated sales without fixing category, causing incorrect results. Option A filters on average sales, not total. Option A uses INCLUDE which is not appropriate here.