Forum Discussion
Anonymous
6 years agoNot applicable
Return selected values in string?
I have a column with unique values in a standalone table (tableA). How do i create a measure that returns all these values in a single string that will update accordingly while filtering. I canno...
- 6 years ago
Try something like this:
= CONCATENATEX ( ALLSELECTED ( TableA[Column] ), TableA[Column], "," )
amitchandak
6 years agoSuper User
Anonymous , what output do you need ?