You have sales data by country and want to show total sales geographically. Which map visualization type in Power BI best shows sales distribution by country with clear color intensity differences?
Think about which map type uses color fill to represent values across regions.
A choropleth map colors entire countries based on sales volume, making it easy to compare regions by color intensity. Bubble maps show points but can be less clear for whole country comparisons.
Given a sales table with columns City and SalesAmount, which DAX measure correctly calculates total sales for each city ignoring any slicers or filters on City?
Total Sales All Cities = CALCULATE(SUM(Sales[SalesAmount]), ALL(Sales[City]))
Use a function that removes filters on the City column inside CALCULATE.
ALL(Sales[City]) removes any filters on City, so the measure sums sales for all cities regardless of slicers.
You want to create a map visualization that allows users to drill down from Country to State to City. What is the best way to model this geographic hierarchy in Power BI?
Think about how Power BI hierarchies work in the Fields pane.
A single table with all geographic levels lets you define a hierarchy that users can drill down in map visuals smoothly.
Your map visualization slows down when showing thousands of city points. Which approach best improves performance without losing key insights?
Think about reducing the number of points shown to improve speed.
Aggregating data to a higher geographic level reduces points and improves map rendering speed while keeping meaningful insights.
Given this DAX measure intended to show average sales per city in a map tooltip, what error will it cause?
Avg Sales Tooltip = AVERAGE(Sales[SalesAmount], Sales[City])
Avg Sales Tooltip = AVERAGE(Sales[SalesAmount], Sales[City])
Check the number of arguments AVERAGE accepts.
AVERAGE only accepts one column argument. Passing two arguments causes a syntax error.