Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I am unable to select multiple option in slicer. Can someone help me in resolving multi select error while selecting slicer.
I am not sure how to use All selected here. Below is the DAX for reference. Can someone help
Solved! Go to Solution.
@Ashish9201 , Try like
ARPE Tiers Filter =
VAR CurrentSelection = values( 'ARPE Tiers'[ARPE Tiers] )
VAR CurrentStatus = msdyn_timeentry[ARPE Tiers]
RETURN
SWITCH (
TRUE (),
CurrentStatus in CurrentSelection = , 1,
"All" in CurrentSelection , 1,
0)
@Ashish9201 , Try like
ARPE Tiers Filter =
VAR CurrentSelection = values( 'ARPE Tiers'[ARPE Tiers] )
VAR CurrentStatus = msdyn_timeentry[ARPE Tiers]
RETURN
SWITCH (
TRUE (),
CurrentStatus in CurrentSelection = , 1,
"All" in CurrentSelection , 1,
0)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.