Forum Discussion
gaznez
3 years agoResolver I
Display extra information in tooltip (map visualisation)
I have a working model that includes a map visual showing where all the customers are. The map has 'postcode' as the Location, 'Total Sales' for the bubble size and 'Customer name' as the tooltip. ...
- 3 years ago
Managed to find a solution myself. I created the following measure:
ConcatCustomers = CONCATENATEX(CustomerMaster,CustomerMaster[Customer Name],", ")Then I dragged this measure in to the tooltip field for the map visual. Now if one postcode has several customers - it lists them all separated by a comma.
gaznez
3 years agoResolver I
Managed to find a solution myself. I created the following measure:
ConcatCustomers = CONCATENATEX(
CustomerMaster,
CustomerMaster[Customer Name],
", ")
Then I dragged this measure in to the tooltip field for the map visual. Now if one postcode has several customers - it lists them all separated by a comma.