Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
26 | |
19 | |
18 | |
13 | |
11 |
User | Count |
---|---|
32 | |
21 | |
19 | |
18 | |
15 |