Forum Discussion
Elias_Gda
2 years agoNew Member
Scatter Plot: Multiple data points at the same place
Hi, I'm pretty new to Power BI and need help with a problem I've encountered. I have a sharepoint list about Software Use Case Ideas. Every Use Case has a long and short description. My boss wants t...
- 2 years ago
I was able to find a solution myself. I combined the coordinates in one column like this "X###Y###" and then created a second tabled where I grouped the rows at the same coordinates using this tutorial: https://gorilla.bi/power-query/group-by-to-concatenate-text/
DataInsights
Super User
2 years ago
Create a measure like this and add it as a tooltip. It displays each UseCase on a separate line.
Tooltip Measure =
CONCATENATEX ( Table1, Table1[UseCase] & UNICHAR ( 10 ) )