Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi All,
I have a three mode, If I select one mode in slicer then is should show countof other.
Ex: I have three mode data "Air", "Ocean" and "Rail". If I slecect mode "Air" in slicer then it should show me count of mode "Ocean and Rail" so on...
Please any one help me with this, I am trying DAX function for this from long.
Thank you.
Regards,
Sachin.
Solved! Go to Solution.
@Anonymous Please try this as a New Measure
Test309 = VAR _Selection = SELECTEDVALUE(Test309SlicerExclusion[Mode]) RETURN CALCULATE(COUNTROWS(Test309SlicerExclusion),NOT Test309SlicerExclusion[Mode] IN {_Selection})
Sample Test Data
Proud to be a PBI Community Champion
@Anonymous Please try this as a New Measure
Test309 = VAR _Selection = SELECTEDVALUE(Test309SlicerExclusion[Mode]) RETURN CALCULATE(COUNTROWS(Test309SlicerExclusion),NOT Test309SlicerExclusion[Mode] IN {_Selection})
Sample Test Data
Proud to be a PBI Community Champion