The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
hi all
I had a problem with the tool tip, I have a slicer and sometimes I want to select multiple options, and then I want to record how many options I chose, is this possible to solve with the DAX function
Just like in the picture
Best Regards
alan-li
Solved! Go to Solution.
[Num Of Options Chosen] = COUNTROWS( VALUES( UnderlyingSlicerTable[TheFieldExposedInSlicer] ) )
If you want to distinguish between all options selected and none (which is the same), then you have to use some conditional logic with ISFILTERED( UnderlyingSlicerTable[TheFieldExposedInSlicer] ).
Best
D.
[Num Of Options Chosen] = COUNTROWS( VALUES( UnderlyingSlicerTable[TheFieldExposedInSlicer] ) )
If you want to distinguish between all options selected and none (which is the same), then you have to use some conditional logic with ISFILTERED( UnderlyingSlicerTable[TheFieldExposedInSlicer] ).
Best
D.
It worked. Thank you very much
User | Count |
---|---|
16 | |
8 | |
6 | |
6 | |
5 |
User | Count |
---|---|
23 | |
13 | |
13 | |
8 | |
8 |