You want to create a Tableau map showing total sales by region as colored areas and individual city sales as points on top. Which combination of map layers should you use?
Think about which map type colors areas and which shows points.
Filled Maps color entire regions, perfect for showing sales by region. Symbol Maps show points, ideal for city-level sales markers.
In Tableau, why does the order of map layers matter when you add multiple layers like filled regions and point markers?
Think about what happens if points are behind colored areas.
Map layers stack visually. If point markers are below filled regions, they may be hidden. The top layer is always visible above lower layers.
Given a dataset with sales by city and state, which Tableau LOD expression correctly calculates total sales per state ignoring any city-level filters?
{FIXED [State] : SUM([Sales])}Think about which LOD keyword fixes the calculation at the state level.
{FIXED [State] : SUM([Sales])} calculates sales fixed at the state level, ignoring city filters. INCLUDE adds detail, EXCLUDE removes detail, and SUM is affected by filters.
You created a map with two layers: a filled map for states and a symbol map for cities. The city points are not visible. What is the most likely cause?
Consider layer stacking order and visibility.
If the symbol map layer is below the filled map layer, the city points will be hidden behind the colored regions. Adjusting layer order fixes this.
You need to build a Tableau dashboard showing: (1) sales by state as colored areas, (2) top 5 cities by sales as large points, and (3) a heatmap layer showing sales density. How should you layer these map types for best clarity?
Think about which layers provide background context and which highlight points.
The filled map provides a base color for states, so it should be at the bottom. The heatmap shows density and should be above the base but below points. The symbol map highlights top cities and should be on top for visibility.