Complete the code to create a symbol map by dragging the correct mark type.
SHOW ME [1] ON THE MAP TO REPRESENT LOCATIONSIn Tableau, symbol maps use the Circle mark type to show data points on a map.
Complete the code to add geographic roles to your data for symbol maps.
ASSIGN [1] ROLE TO THE CITY FIELDTo create symbol maps by city, you must assign the City geographic role to the city field.
Fix the error in the Tableau calculation to size symbols by sales.
SIZE = SUM([1])To size symbols by sales, use SUM(Sales) in the calculation.
Fill both blanks to filter the map to show only cities with sales greater than 1000.
FILTER: SUM([1]) [2] 1000
To filter cities with sales greater than 1000, use SUM(Sales) > 1000.
Fill all three blanks to create a calculated field that colors symbols by profit ratio.
PROFIT RATIO = SUM([1]) / SUM([2]) WHERE [3] > 0
The profit ratio is calculated as SUM(Profit) / SUM(Sales) and filtered where profit is greater than zero.