Forum Discussion
Anonymous
6 years agoNot applicable
ConcatenateX with text and counts
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....
- 6 years ago
Try this:
Measure = VAR __Table = SUMMARIZE( 'Table', [Status], "Count",COUNTROWS('Table') ) RETURN CONCATENATEX(__Table,[Count] & " " & [Status],", ")
Greg_Deckler
Community Champion
6 years agoTry this:
Measure =
VAR __Table =
SUMMARIZE(
'Table',
[Status],
"Count",COUNTROWS('Table')
)
RETURN
CONCATENATEX(__Table,[Count] & " " & [Status],", ")- Anonymous6 years agoNot applicable
Brilliant! Thank you!
- Greg_Deckler6 years ago
Community Champion
Apparently that worked then? 🙂