0
0
Tableaubi_tool~20 mins

Symbol maps in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Symbol Maps Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
visualization
intermediate
2:00remaining
Identify the correct symbol map visualization

You have a dataset with sales data by city and want to create a symbol map in Tableau that shows sales volume using circle sizes. Which option correctly describes the best practice for this visualization?

ADrag city to Columns, sales to Rows, and use Line mark type.
BPlace sales on Color, city on Rows, and use Bar chart mark type.
CUse the city field on Detail, sales on Size, and set the mark type to Circle.
DUse sales on Label, city on Tooltip, and set mark type to Shape.
Attempts:
2 left
💡 Hint

Think about how symbol maps use size to represent values on a geographic location.

dax_lod_result
intermediate
2:00remaining
Calculate total sales per city ignoring filters

In Tableau, you want to create a calculated field that shows total sales per city regardless of any filters applied on other fields. Which Tableau LOD expression achieves this?

Tableau
{ FIXED [City] : SUM([Sales]) }
A{ FIXED [City] : SUM([Sales]) }
B{ EXCLUDE [City] : SUM([Sales]) }
C{ INCLUDE [City] : SUM([Sales]) }
DSUM([Sales])
Attempts:
2 left
💡 Hint

Consider which LOD expression fixes the calculation at the city level ignoring other filters.

data_modeling
advanced
2:30remaining
Optimize symbol map performance with large datasets

You have a symbol map in Tableau showing thousands of points for customer locations. The map is slow to load. What is the best approach to improve performance without losing important detail?

AIncrease the size of symbols to cover more points and reduce the number of marks.
BAggregate customer locations to postal code level and use aggregated data for the symbol map.
CRemove the geographic field and use a text table instead.
DAdd more filters to show only a few customers at a time.
Attempts:
2 left
💡 Hint

Think about reducing the number of marks by grouping data.

🎯 Scenario
advanced
2:30remaining
Designing a symbol map with multiple measures

You want to create a symbol map in Tableau that shows sales volume by city using circle size and profit margin by city using color. Which combination of fields and mark settings will achieve this?

APlace city on Detail, sales on Size, profit margin on Color, and set mark type to Circle.
BPlace city on Rows, sales on Columns, profit margin on Label, and use Bar mark type.
CPlace city on Color, sales on Size, profit margin on Tooltip, and use Shape mark type.
DPlace city on Detail, profit margin on Size, sales on Color, and set mark type to Line.
Attempts:
2 left
💡 Hint

Remember symbol maps use geographic fields on Detail and size/color to represent measures.

🔧 Formula Fix
expert
3:00remaining
Identify the error in this Tableau symbol map calculation

Given this calculated field for symbol size:
IF SUM([Sales]) > 10000 THEN SIZE() ELSE 5 END
What error will Tableau show when using this in a symbol map?

AThe calculation will cause a syntax error due to missing ELSE keyword.
BThe calculation will cause a type mismatch error because SIZE() returns a string.
CThe calculation will run but SIZE() returns the number of marks, not a size value.
DSIZE() function cannot be used in calculated fields; it causes an error.
Attempts:
2 left
💡 Hint

Check if SIZE() is valid inside calculated fields for size encoding.