Forum Discussion
heidibb
Helper IV
10 years agoHow can I add a text value to a tool tip?
Hello, I have longitude and latitude in a data file along with a point number, person's name and a few other attributes related to that point on the map. I am able to plot each point on the m...
- 10 years ago
You have to create a MEASURE... (and use it in the tooltips)
Names List Measure = CONCATENATEX ( VALUES(Table[NameColumn]), Table[NameColumn],", ")
This will work for 1 or many names associated with that location! :smileyhappy:
Sean
Community Champion
10 years agoYou have to create a MEASURE... (and use it in the tooltips)
Names List Measure = CONCATENATEX ( VALUES(Table[NameColumn]), Table[NameColumn],", ")
This will work for 1 or many names associated with that location! :smileyhappy:
heidibb
Helper IV
10 years agoThanks!! this worked. I'm used to Tableau where you can put anything you want on the tool tip and format it as needed. This was a bit trickier to figure out! thanks so much.