Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
kenneth_mejia
Frequent Visitor

Show values that are Filtered out on all pages

 

 

Is there a way to show all Filtered out values in a Table visual?

I have a PBIX report with multiple pages and I have to exlude some sites.

 
 
 
 
 

image.png

 

Now, I would like to diplay all those "Site is not [Site A], [Site B], [Site C], [Site D] in a visual table as shown below.

            

              Excluded Sites

Sites
[Site A]
[Site B]
[Site C]
[Site D]

 

 

 

1 ACCEPTED SOLUTION
v-joesh-msft
Solution Sage
Solution Sage

Hi @kenneth_mejia ,

To achieve the effect you want, you need to first create a calculated table:

 

ShowFiltersTable = DISTINCT('Table'[Name])

 

Then create a measure in the original table:

 

showFilterStatus =
IF (
    SELECTEDVALUE ( 'ShowFiltersTable'[Name] )
        IN EXCEPT ( ALL ( 'Table'[Name] ), FILTERS ( 'Table'[Name] ) ),
    1,
    BLANK ()
)

 

The result is as follows:

11.PNG

Here is a demo, please try it:

 https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EQm4RS-3SIxOiWfomU...

Best Regards,

Community Support Team _ Joey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-joesh-msft
Solution Sage
Solution Sage

Hi @kenneth_mejia ,

To achieve the effect you want, you need to first create a calculated table:

 

ShowFiltersTable = DISTINCT('Table'[Name])

 

Then create a measure in the original table:

 

showFilterStatus =
IF (
    SELECTEDVALUE ( 'ShowFiltersTable'[Name] )
        IN EXCEPT ( ALL ( 'Table'[Name] ), FILTERS ( 'Table'[Name] ) ),
    1,
    BLANK ()
)

 

The result is as follows:

11.PNG

Here is a demo, please try it:

 https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/EQm4RS-3SIxOiWfomU...

Best Regards,

Community Support Team _ Joey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-joesh-msft Thanks. It works!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.