Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
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!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |