Forum Discussion
How to display filtered values?
- Anonymous6 years ago
You can use the following measure:
Measure = IF(ISFILTERED('Table'[Item 2 Progress]);IF(COUNTROWS(VALUES('Table'[Item 2 Progress])) >=5;"Multiple";"| Progress -" & CONCATENATEX(VALUES('Table'[Item 2 Progress]);'Table'[Item 2 Progress];", "));"")Where
Table Item 2 Progress = your field you filter on.
>=5 if there are 5 or more filters it will show "Multiple" you can change this to whatever you want.
If there is no filter it will show nothing. And if there is a filter it will look like this: (ofcourse you can change this too)
Note: It looks like -10 but that because there is a - in the measure i used.
You can use the following measure:
Measure = IF(ISFILTERED('Table'[Item 2 Progress]);IF(COUNTROWS(VALUES('Table'[Item 2 Progress])) >=5;"Multiple";"| Progress -" & CONCATENATEX(VALUES('Table'[Item 2 Progress]);'Table'[Item 2 Progress];", "));"")Where
Table Item 2 Progress = your field you filter on.
>=5 if there are 5 or more filters it will show "Multiple" you can change this to whatever you want.
If there is no filter it will show nothing. And if there is a filter it will look like this: (ofcourse you can change this too)
Note: It looks like -10 but that because there is a - in the measure i used.
Hi Eric,
Greeting of the Day!
I have tried with above measure. It really helpfull for me.
But, When there is no filter applied to any of the slicer it showing as "(Blank)". Refer snip for more information.
Is there any possiblite to make No Filters applied note instead of Blank.