Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi everyone,
I urge you to tell me how can i manage to hide the latitude and longitude informations from the bubble information of the map.
Best regards.
Solved! Go to Solution.
Hi, @Utilisateur_pb
Thanks for ibarrau's reply. Unfortunately, the current version of PBI Desktop does not support customizing Tooltips. As a workround, you can close the tooltips and write a measure into Card to show the information you wanted.
Country and City =
VAR _country =
IF ( ISFILTERED ( 'Table'[Latitude] ), MAX ( 'Table'[Country] ) )
VAR _city =
IF ( ISFILTERED ( 'Table'[Latitude] ), MAX ( 'Table'[City] ) )
RETURN
IF (
ISFILTERED ( 'Table'[Latitude] ),
_country & " " & _city,
"No information, please selected"
)
You can submit an idea for here and vote it, the product team will take note of such a need.
Related Link: New tab (powerbi.com)
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi, @Utilisateur_pb
Thanks for ibarrau's reply. Unfortunately, the current version of PBI Desktop does not support customizing Tooltips. As a workround, you can close the tooltips and write a measure into Card to show the information you wanted.
Country and City =
VAR _country =
IF ( ISFILTERED ( 'Table'[Latitude] ), MAX ( 'Table'[Country] ) )
VAR _city =
IF ( ISFILTERED ( 'Table'[Latitude] ), MAX ( 'Table'[City] ) )
RETURN
IF (
ISFILTERED ( 'Table'[Latitude] ),
_country & " " & _city,
"No information, please selected"
)
You can submit an idea for here and vote it, the product team will take note of such a need.
Related Link: New tab (powerbi.com)
Best Regards,
Yang
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data in the Power BI Forum
Hi. You can click at the map, go to formatting settings. Under general tab just disable the tooltip. You won't get any information when mouse over.
I hope that helps,
Happy to help!
Hey,
Actually, there are some other important informations in the tooltip, i just want to hide the latitude and longitude information from the content.
Best regards.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.