Complete the code to create a filled map by dragging the correct mark type.
Drag the '[1]' mark type to the Marks card to create a filled map.
In Tableau, to create a filled map (choropleth), you must select the 'Filled Map' mark type on the Marks card.
Complete the step to add color to the filled map by dragging the correct field to Color.
Drag the '[1]' field to the Color shelf on the Marks card to color the map by data.
To color a filled map by data values, drag a measure like 'Sales' to the Color shelf.
Fix the error in the calculation to show percentage of total sales by region.
Percentage Sales = SUM([Sales]) / [1]The TOTAL() function computes the sum across the entire table, so dividing by TOTAL(SUM([Sales])) gives the percentage of total sales.
Fill both blanks to create a calculated field that shows sales difference from average sales.
Sales Difference = (SUM([Sales]) [1] AVG([Sales])) [2] AVG([Sales])
The formula subtracts the average sales from the sum of sales, then divides by average sales to get the relative difference.
Fill all three blanks to create a calculated field that flags regions with sales above average.
IF SUM([Sales]) [1] AVG([Sales]) THEN '[2]' ELSE '[3]' END
This IF statement checks if sales are greater than average sales and labels the region accordingly.