Forum Discussion
Tooltip listing from a heat map
Im creating a territory map of customers based on ZipCode and using Bubbles and the Map visualization for the revenue size. Id like to list the customer to show in a particular bubble. So for instance 1 zip code may have 10 customers in it. I want to list them. I tried using a tooltip but it only gives me the first or last customer in the list. Is it possible to get the list if I hover over the bubble?
Hi bwhitlock ,
One sample for your reference. As amitchandak metioned, we can create a measure using the function CONCATENATEX:
Measure = CONCATENATEX('Table','Table'[Post Code], " & ")Then we can get the excepted result like this.
For more details, please check the pbix as attached.
2 Replies
- amitchandak
Super User
Try creating a measure of customer name using concatenate and use that in the tooltip
https://docs.microsoft.com/en-us/dax/concatenatex-function-dax
- v-frfei-msft
Community Support
Hi bwhitlock ,
One sample for your reference. As amitchandak metioned, we can create a measure using the function CONCATENATEX:
Measure = CONCATENATEX('Table','Table'[Post Code], " & ")Then we can get the excepted result like this.
For more details, please check the pbix as attached.