Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply

latitude and latitude supression from information bubble

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.

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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.

vyaningymsft_1-1727860107261.png

 

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

 

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

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.

vyaningymsft_1-1727860107261.png

 

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

 

ibarrau
Super User
Super User

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,


If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Happy to help!

LaDataWeb Blog

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.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.

Top Solution Authors