Forum Discussion
alisonpappas
6 years agoHelper III
Page Level Filters Viewing
Hi, I have page level filters and I want to be able to show when they are being used, is that possible? Example: Page level filter of regions, so if I select "Canada" a filter on the page sh...
- 6 years ago
Change it like so.
Regions = IF ( ISFILTERED ( Data[Region] ), CONCATENATEX ( VALUES ( Data[Region] ), Data[Region], ", ", Data[Region] ) )
Mariusz
6 years agoCommunity Champion
Hi alisonpappas
Sure try this.
Measure 2 =
IF(
ISFILTERED( 'Table'[Column] ),
CONCATENATEX(
VALUES( 'Table'[Column] ), 'Table'[Column], "; "
)
)
Best Regards,
Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.

Mariusz
If this post helps, then please consider Accepting it as the solution.
Please feel free to connect with me.
- alisonpappas6 years agoHelper III
HI Mariusz ,
It shows it many times instead of one, the data has many rows of the region. Is there a way so it only comes up once?
- jdbuchanan716 years agoSuper User
Change it like so.
Regions = IF ( ISFILTERED ( Data[Region] ), CONCATENATEX ( VALUES ( Data[Region] ), Data[Region], ", ", Data[Region] ) )