Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!See when key Fabric features will launch and what’s already live, all in one place and always up to date. Explore the new Fabric roadmap
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.
User | Count |
---|---|
91 | |
74 | |
71 | |
58 | |
55 |
User | Count |
---|---|
41 | |
38 | |
34 | |
32 | |
30 |