Forum Discussion
Map visual: preventing piechart and showing data in tooltip
Hi v-micsh-msft,
Thanks for the quick reply. I was already afraid that plotting 3 bubbles on the same location would not be possible, since 3they would overlap. I guess we'll have to start collecting a more detailed address of our partners anyway.
Regarding your answer on question 2, my table is structured as follows (simplified example):
Ideally, i would like the bubble on location 10001 to show something like "John - Active - 12313123; Pete - Interested - 12313123; Mike - Active - 12313123".
Any idea how to achieve that?
Best,
David
Create a new column
partnersData = Table1[PartnerName] & "-" & Table1[Status] & "-" & Table1[phone]
Next create a measure:
PartnersInfo = CONCATENATEX(Table1,Table1[partnersData],"|")
Use this measure in tooltip area.