Forum Discussion

AndreaPiscitell's avatar
AndreaPiscitell
Frequent Visitor
6 years ago
Solved

Attribute Slicer - Add AND condition

Hello everyone,  I am trying to use the "Attribute Slicer" to select and filter the output of another table. Currently when a value from column 1 is selected in the slicer, the linked value to is g...
  • v-lid-msft's avatar
    6 years ago

    Hi AndreaPiscitell ,

     

    We can create a measure use following formula, then put it into the Visual Filter of Table as following picture:

     

    FilterMeasure =
    IF (
        COUNTX (
            DISTINCT ( 'Sample'[Actor] ),
            IF ( [Actor] IN FILTERS ( 'Sample'[Actor] ), 1, BLANK () )
        ) + 0
            = COUNTROWS ( FILTERS ( 'Sample'[Actor] ) ),
        1,
        0
    )

     

    Or the simple version, it should have the same result

     

    FilterMeasure_SimpleVersion = 
    IF (
        DISTINCTCOUNT ( 'Sample'[Actor] ) = COUNTROWS ( FILTERS ( 'Sample'[Actor] ) ),
        1,
        0
    )

     


    BTW, pbix as attached.

     

    Best regards,

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