Complete the code to create a highlight table by dragging the correct mark type.
SET mark_type = '[1]'
In Tableau, to create a highlight table, you set the mark type to square.
Complete the code to assign the correct field to the Color shelf for a highlight table.
Drag the [1] field to Color shelf.Highlight tables use a measure on the Color shelf to show intensity of values.
Fix the error in the calculation to highlight sales above 5000.
IF SUM([Sales]) [1] 5000 THEN 'High' ELSE 'Low' END
The correct operator to check if sales are above 5000 is >.
Fill both blanks to create a calculated field that highlights profit margin above 20%.
IF [1] / [2] > 0.2 THEN 'Good' ELSE 'Bad' END
Profit margin is profit divided by sales, so use SUM([Profit]) divided by SUM([Sales]).
Fill all three blanks to create a highlight table that colors sales by region and category.
Columns: [1] Rows: [2] Color: [3]
For a highlight table, put Region on Columns, Category on Rows, and color by SUM([Sales]) to show sales intensity.