The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Hello all,
I have a need to create a Concatenated list with Counts and Values. I can get the unique values through ConcatenateX, but I want to add the count of the number of times they appear.
My column is like this
Status |
Pending |
Pending |
Pending |
Live |
Live |
Im trying to write a measure to get a card that says " 3 Pending, 2 Live". i can get to "Pending, Live" with this
Solved! Go to Solution.
Try this:
Measure =
VAR __Table =
SUMMARIZE(
'Table',
[Status],
"Count",COUNTROWS('Table')
)
RETURN
CONCATENATEX(__Table,[Count] & " " & [Status],", ")
Try this:
Measure =
VAR __Table =
SUMMARIZE(
'Table',
[Status],
"Count",COUNTROWS('Table')
)
RETURN
CONCATENATEX(__Table,[Count] & " " & [Status],", ")
Brilliant! Thank you!