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
BeardedDog888
Regular Visitor

Conditional filtering based on existing conditions

Screenshot_20221203-075704_Bixby Voice.jpg

I have a table (table1) in a matrix visual that is linked to a second table (table2). Table2 has a category column (x) where each row is labelled as either 1 or 0. I want a separate visual (y) to be filtered based on both current filtering on page but also by an additional condition: if both x=1 and x=0 rows are visible in table1 matrix visual then filter out all values where x=1 else show all values. Please note that column x itself does not appear in the table1 matrix visual I've just included these in the examples to illustrate the issue.

 

I have tried creating a measure for this but it only works when a selection is made on the table1 visual. I would like help to be able to have a filter which works both when data is selected on the matrix visual and when nothing is selected.

3 REPLIES 3
v-yangliu-msft
Community Support
Community Support

Hi  @BeardedDog888 ,

 

Here are the steps you can follow:

1. Create calculated table.

Company =
DISTINCT('Table'[Company])

vyangliumsft_0-1670229462500.png

2. Create measure.

Flag =
 IF(COUNTROWS(ALL('Table'))=COUNTROWS(ALLSELECTED('Table')),0,1)

3. Place [Flag] in the Filter of the Company Table to 1.

vyangliumsft_1-1670229462504.png

4. Place the [Company] of the Table in the Filters on this page.

vyangliumsft_2-1670229462509.png

5. Result:

When there are 1 and 0, it is not displayed

vyangliumsft_3-1670229462510.png

When there is only 1, display all

vyangliumsft_4-1670229462510.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

 

Unfortunately this doesn't solve the issue as I still need to display visual when both 0 and 1 values are in the table, it is just that when this occurs only 0 values should show in the visual.

lbendlin
Super User
Super User

Read about ISFILTERED()

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.