The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
77 | |
77 | |
43 | |
37 |
User | Count |
---|---|
157 | |
114 | |
64 | |
60 | |
55 |