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

Combining Filter with AND

Hello Community,

 

I have two Tables: Customers and Contracts. In the contracts table I have one column "type". I then have a matrix where I display per client which typ's of contracts he has. 

 

I want now to be able to filter the customers by contract typs. This works but it filters the customer with "OR" on every type I filter. How could I set the filter to "AND" the typs in the way: all customers that have e contract of type A AND B AND E? 

 

Thanks for your help!

1 ACCEPTED SOLUTION

Ah, you desire the mythical AND Slicer. Luckily, it exists. This one is of my own invention and is in my book actually:

https://community.powerbi.com/t5/Quick-Measures-Gallery/Patient-Cohort-AND-Slicer/m-p/391883#M130

 

With an explanation because the way it works is not obvious at all. But, I think it is the most concise AND slicer out there if not intuitive in how it operates.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

5 REPLIES 5
amitchandak
Super User
Super User

If you need on of the value

 

Table[ e contract of type] in {"A", "B","E"}

 

I am not how both can be true , but this example of and

Table[ e contract of type]= "A" && Table[ e contract of type]= "B" && Table[ e contract of type]= "E"

 

Example of OR

Table[ e contract of type]= "A" || Table[ e contract of type]= "B" || Table[ e contract of type]= "E"

Greg_Deckler
Super User
Super User

FILTER('Table', [Column1] = "A" && [Column2] = "B")


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Hi @Greg_Deckler ,

thanks for the quick response. The data structure is as Follows:

Customer:

Customer NameCustomer ID
Foo123
Bar456

 

Contracts:

IDCustomerIDType
C12123A
C13123B
C14456A
C15456B
C16456E

 

 

I now want to ad a filter to the report, so that the report users can analyze which customers have contracts of type "A AND B" or "A AND B AND E" (Results in Customer 456, named Bar). 

Hi , @frieso 

Is this the result you want?      pbix attached

22.png

If so ,please   create a visual control measure and apply it to the table filter pane. 

 

Measure =
VAR tab =
    FILTER ( ALL ( Contracts ), Contracts[Type] IN FILTERS ( 'Table'[Type] ) )
VAR numoftypes =
    DISTINCTCOUNT ( 'Table'[Type] )
VAR _customerid =
    SELECTEDVALUE ( Contracts[CustomerID] )
VAR num =
    COUNTROWS ( FILTER ( tab, [CustomerID] = _customerid ) )
RETURN
    IF (
        ISFILTERED ( 'Table'[Type] ),
        IF (
            SELECTEDVALUE ( Contracts[Type] ) IN FILTERS ( 'Table'[Type] ),
            IF ( numoftypes = num, 1, 0 ),
            0
        ),
        0
    )

 

 

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

 

 

 

Ah, you desire the mythical AND Slicer. Luckily, it exists. This one is of my own invention and is in my book actually:

https://community.powerbi.com/t5/Quick-Measures-Gallery/Patient-Cohort-AND-Slicer/m-p/391883#M130

 

With an explanation because the way it works is not obvious at all. But, I think it is the most concise AND slicer out there if not intuitive in how it operates.


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.