Forum Discussion
AndreaPiscitell
6 years agoFrequent Visitor
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...
- 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.
parry2k
Super User
6 years agoHere is a post which talks about similar stuff, hope it helps
https://medium.com/seismic-data-science/changing-or-to-and-logic-for-power-bi-slicers-1a6b20aee5f5