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:
すべて明確でしたか?
フィードバックありがとうございます!
セクション 1. 章 19
AIに質問する
AIに質問する
何でも質問するか、提案された質問の1つを試してチャットを始めてください
セクション 1. 章 19