Complete the code to create a combined measure by adding a second measure.
SUM(Sales) [1] AVG(Profit)In Tableau, combining measures with a plus sign (+) in calculated fields can help create combined metrics for use in charts.
Complete the code to identify the Profit measure in a multi-measure chart.
IF [1] THEN 'Synchronize Axis' ELSE 'Separate Axis' END
In Tableau dual-axis charts with multiple measures, Measure Names can be used in calculations to check for specific measures like Profit.
Fix the error in the calculation to combine bar and line charts correctly.
IF SUM(Sales) [1] 10000 THEN 'High' ELSE 'Low' END
The greater than (>) operator correctly filters sales above 10,000 to show 'High'.
Fill both blanks to create a calculated field that shows profit ratio and categorizes it.
Profit Ratio = SUM(Profit) [1] SUM(Sales) Category = IF Profit Ratio [2] 0.2 THEN 'Good' ELSE 'Needs Improvement' END
Profit Ratio is calculated by dividing profit by sales, and then compared if greater than 0.2 for category.
Fill all three blanks to create a combined chart with sales, profit, and a filter for high sales.
Combined Sales = SUM([1]) Combined Profit = AVG([2]) Filter = IF SUM(Sales) [3] 50000 THEN 'High Sales' ELSE 'Low Sales' END
SUM(Sales) and AVG(Profit) are common aggregations, and filtering sales greater than 50,000 identifies high sales.