This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello,
I have a situation where I've created a very simple bar chart to display the number of courses run on a given day. So Y axis is simply 'Count of Table{course title]' and the x axis is the date.
I want to add a tooltip for the course name. Where there is only one course, no problem, but two or more - it only displays the first/last course name. I want to create a measure that concatenates all the course names, so when I hover over a bar on my barchart, it will display all the course names.
This is my current measure
Can anyone help here, please? I think this should be pretty easy, but I cannot think how to do it.
Thanks alot for your help.
Solved! Go to Solution.
CONCATENATEX(Table,[Column],";")
Thank you. I actually though I had tried this before the version I added above. But it works now anyway. Tks again.
You don't need SELECTEDVALUE, that works on the filter context but inside an iterator you have a row context. Try
All_Titles =
CONCATENATEX ( VALUES ( 'TableName'[Title] ), 'TableName'[Title], ";" )
@johnt75 Thanks for replying. This didn't allow me to add the second column, unfortunately.
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 36 | |
| 30 | |
| 22 | |
| 22 |