Map and Tool Tips
Explore how to use different map types in Power BI and enhance them with informative tooltips. You will learn to add and configure map visuals, customize tooltips by adding extra fields and formatting, and even design dedicated tooltip pages for deeper insights.
Using your DAX knowledge, you can apply functions like CALCULATE and SUM to isolate specific rider types and enrich your map tooltips with meaningful data:
Registered Riders State =
CALCULATE(
SUM(bike_riders_data_by_state[riders]),
bike_riders_data_by_state[rider_type] = "Registered"
)
Casual Riders State =
CALCULATE(
SUM(bike_riders_data_by_state[riders]),
bike_riders_data_by_state[rider_type] = "Casual"
)
Here is the dataset you will use:
Thanks for your feedback!
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat
How do I add and configure different map types in Power BI?
Can you explain how to create and customize tooltips for map visuals?
What are the steps to use DAX measures for enhancing map tooltips?
Awesome!
Completion rate improved to 3.7
Map and Tool Tips
Swipe to show menu
Explore how to use different map types in Power BI and enhance them with informative tooltips. You will learn to add and configure map visuals, customize tooltips by adding extra fields and formatting, and even design dedicated tooltip pages for deeper insights.
Using your DAX knowledge, you can apply functions like CALCULATE and SUM to isolate specific rider types and enrich your map tooltips with meaningful data:
Registered Riders State =
CALCULATE(
SUM(bike_riders_data_by_state[riders]),
bike_riders_data_by_state[rider_type] = "Registered"
)
Casual Riders State =
CALCULATE(
SUM(bike_riders_data_by_state[riders]),
bike_riders_data_by_state[rider_type] = "Casual"
)
Here is the dataset you will use:
Thanks for your feedback!