Forum Discussion
Dwayne_Thomson
8 years agoFrequent Visitor
Outputting values from column as a list
Hello PBI Community, I have a interesting request from one of my clients: they would like to be able to see a summary of all filters that are applied to a given report. I used the ISFILTERED() ...
- Anonymous8 years ago
Dwayne_Thomson from what understand you have a list of filters which are being filtered in a column. Now you want to provide all the values in the column seperated by a , or something.
I would use a CONCATENATEX(TableName, TableName[Col Name], ",")
Anonymous
8 years agoNot applicable
Dwayne_Thomson from what understand you have a list of filters which are being filtered in a column. Now you want to provide all the values in the column seperated by a , or something.
I would use a CONCATENATEX(TableName, TableName[Col Name], ",")
dlt1697
8 years agoNew Member
This works, and thanks!