Map and Tool Tips
Letβs dive into using different map types in Power BI and how to enhance them with additional tooltips. You'll learn how to add map visuals, configure and customize tooltips with extra fields and formatting, and create custom tooltip pages for richer insights.
With our DAX knowledge, we are going to use CALCULATE
and SUM
to isolate the rider types to help add information to our map tooltip:
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 we 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 custom tooltips to a map visual in Power BI?
What are the different map types available in Power BI and how do I enable them?
Can you explain how to use DAX measures for tooltips in map visuals?
Awesome!
Completion rate improved to 3.7
Map and Tool Tips
Swipe to show menu
Letβs dive into using different map types in Power BI and how to enhance them with additional tooltips. You'll learn how to add map visuals, configure and customize tooltips with extra fields and formatting, and create custom tooltip pages for richer insights.
With our DAX knowledge, we are going to use CALCULATE
and SUM
to isolate the rider types to help add information to our map tooltip:
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 we will use:
Thanks for your feedback!