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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Jay2077
Helper III
Helper III

More than one tool tip item on map

Ok so i have a map of stores and i want to display items - putting stores column in tool tips gives me first or last 

 

1. How do I get more than first or last say there's more than 2 items 

 

2. How do i get it to show nothing if they only have one item. 

 

Any help greatly appreciated 

1 ACCEPTED SOLUTION
v-yanjiang-msft
Community Support
Community Support

Hi @Jay2077 ,

According to your description, I create a sample.

There are two stores of the city London, other cities have only one store.

vkalyjmsft_0-1642389073380.png

In my understanding, you want the tooltip of London shows both store A and store C, but other cities show nothing.

Here's my solution, create a measure.

Store' = 
IF (
    COUNTX (
        FILTER ( ALL ( 'Table' ), 'Table'[City] = MAX ( 'Table'[City] ) ),
        'Table'[Store]
    ) > 1,
    CONCATENATEX ( 'Table', 'Table'[Store], "," ),
    BLANK ()
)

Put the measure in the map tooltip, then get the expected result.

vkalyjmsft_1-1642389433376.png

vkalyjmsft_2-1642389443249.png

I attach my sample below for reference.

 

Best Regards,
Community Support Team _ kalyj

 

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

 

View solution in original post

2 REPLIES 2
v-yanjiang-msft
Community Support
Community Support

Hi @Jay2077 ,

According to your description, I create a sample.

There are two stores of the city London, other cities have only one store.

vkalyjmsft_0-1642389073380.png

In my understanding, you want the tooltip of London shows both store A and store C, but other cities show nothing.

Here's my solution, create a measure.

Store' = 
IF (
    COUNTX (
        FILTER ( ALL ( 'Table' ), 'Table'[City] = MAX ( 'Table'[City] ) ),
        'Table'[Store]
    ) > 1,
    CONCATENATEX ( 'Table', 'Table'[Store], "," ),
    BLANK ()
)

Put the measure in the map tooltip, then get the expected result.

vkalyjmsft_1-1642389433376.png

vkalyjmsft_2-1642389443249.png

I attach my sample below for reference.

 

Best Regards,
Community Support Team _ kalyj

 

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

 

amitchandak
Super User
Super User

@Jay2077 , You can use measure using concatenatex

concatenatex(Table, Table[Store], " ,")

 

or you can try tooltip page https://docs.microsoft.com/en-us/power-bi/desktop-tooltips

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors