Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I am very new to QV Environment, what below symbol means?
='Part Desc = '&Concat(distinct [Part Description],',')------------this script is written inside it
what highlighted part to in this case?
Help me
Thanks!
Hi @Bharathi09
PBI Measure:
PartDescConcat =
"Part Desc = " & CONCATENATEX (
VALUES ( 'YourTable'[Part Description] ),
'YourTable'[Part Description],
", "
)
*******Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.********
Hi
It will display the "Part Description" value in the "Pop up" .
If there are more than one part description, it will display with comma separator.
For ex:
Part Desc = A,X,Y
Thanks for replying,
Is it a measure?
If I want to add it in PBI, how can I do that and how can I show those values in bar?
Hi
Yes, it a measure.
In Powerbi, might be, use ToolTip page and create the Card object and use that page as tooltip in the bar chart.
Hi @Bharathi09
PBI Measure:
PartDescConcat =
"Part Desc = " & CONCATENATEX (
VALUES ( 'YourTable'[Part Description] ),
'YourTable'[Part Description],
", "
)
*******Hope this resolve your issue.
If the issue is solved please mark the answer with Accept as Solution & like it.********
Hello,
Thanks for giving measure how can I show it in PBI?, I have Total Amt measure also and other measure supplier desc as you have given in previous reply, when I hover on one bar it should give show total duty and supplier desc also
How's that possible?