Here is what we want to achieve: a dynamic list of all our filters, directly on our report pages. Example of filters list displayed on the report pages. Here is the process: Create a ...
I had a similar scenario where I needed to show a list of what slicer selections were applied, across about 20 different slicers. The challenge though, was that I wanted to conditionally format when at least one value from the slicers was selected, so rendering it all as one measure or field wouldn't work with out of the box PBI visuals. (In my scenario custom visuals are not supported)
So the way that I achieve that was to first create a UDF that concatenates the slicer selections togehter, and if nothing was selected to show "No filters selected":
I then created a Calculation Group called "Slicer Selections" and created calculated items for each of the slicers that were used in the report. The initial set up was a bit of overhead, but ultimately from the reporting side, it makes things easier if anything changes. So for each calculated item, it uses the above UDF:
With everything now set up, I used a table visual which contains the 'Slicer selection'[Name] field, and the slicer selections measure for columns. I then set up conditional formatting for the measure (renamed Item(s) Selected here) so when a value is selected, it renders green, otherwise the default light grey would apply.
Then the rest is formatting in terms of the table visual.