Forum Discussion
CONCATENATE DISTINCT VALUES in Tooltip
- 5 years ago
MURTAZA , both values are .5
You can try like
Tooltip = CALCULATE( CONCATENATEX( SUMMARIZE(Sheet1,Sheet1[Employee], Sheet1[Percentage]),[Percentage] ), ALLEXCEPT(Sheet1,Sheet1[Employee]) )
Hi amitchandak
Thank you for the response, but it is not working.
I have created a sample .pbix file attached, if you could look into it, please. Thanks
https://drive.google.com/file/d/1klhlx03gz55ti99xCygZUUve9QOj0u6p/view?usp=sharing
MURTAZA , both values are .5
You can try like
Tooltip =
CALCULATE(
CONCATENATEX(
SUMMARIZE(Sheet1,Sheet1[Employee],
Sheet1[Percentage]),[Percentage]
),
ALLEXCEPT(Sheet1,Sheet1[Employee])
)
- MURTAZA5 years agoResolver I
amitchandak
My apologies that I forgot to mention 1 important aspect of my data is that I have created a unique ID column that I am using, instead of the employee ID (this is because of the limitation Matrix visual has of aggregating data. The duplicated employee IDs, within a department, were aggregated to show as 1, so I had to create a unique ID. This formula is not working in this scenario now, which is understandable, as it is unable to find distinct values. Can you help and advise on this please?Tooltip =
CALCULATE(
CONCATENATEX(
SUMMARIZE(
Sheet1,
Sheet1[Unique ID],
Sheet1[Percentage]
),
[Percentage]
,", "),
ALLEXCEPT(Sheet1,Sheet1[Unique ID]
) )