March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello all !
I have two slicers 1. Technologies 2. Languages
when ever I need to multiselect the languages i need the list of employees who ever involves in that multi select slicer.
ref : Slicer with AND functionality
Solved! Go to Solution.
Hi @SureshNaik123 ,
Based on your description, I have created a simple sample:
Please try to add this measure to the visual level filter:
Slicer AND logic =
VAR _a =
ALLSELECTED ( 'Employee data_new'[Languages] )
VAR _b =
COUNTROWS (
FILTER (
ALL ( 'Employee data_new' ),
[ID] = MAX ( 'Employee data_new'[ID] )
&& [Technologies] = MAX ( 'Employee data_new'[Technologies] )
&& [Languages] IN _a
)
)
RETURN
IF ( _b = COUNTROWS ( _a ), 1, 0 )
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @SureshNaik123 ,
Based on your description, I have created a simple sample:
Please try to add this measure to the visual level filter:
Slicer AND logic =
VAR _a =
ALLSELECTED ( 'Employee data_new'[Languages] )
VAR _b =
COUNTROWS (
FILTER (
ALL ( 'Employee data_new' ),
[ID] = MAX ( 'Employee data_new'[ID] )
&& [Technologies] = MAX ( 'Employee data_new'[Technologies] )
&& [Languages] IN _a
)
)
RETURN
IF ( _b = COUNTROWS ( _a ), 1, 0 )
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I have written this dax please check
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |