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:
Все було зрозуміло?
Дякуємо за ваш відгук!
Секція 4. Розділ 2