Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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!
User | Count |
---|---|
3 | |
3 | |
2 | |
2 | |
2 |
User | Count |
---|---|
9 | |
7 | |
6 | |
5 | |
4 |