Forum Discussion
Anonymous
6 years agoNot applicable
Count selected values in a slicer
Hi all , I'm using TestSlicerCount = COUNTROWS(VALUES(FinalTable[Month])) , to count the number of selected values in a slicer with 12 values, works fine but when there are no selections it ...
- Anonymous6 years ago
I managed to make it work , thank you amitchandak .
I used this ,
TestSlicerCount = IF(ISFILTERED(FinalTable[Month]), COUNTROWS(VALUES(FinalTable[Month])),0)
Anonymous
6 years agoNot applicable
I managed to make it work , thank you amitchandak .
I used this ,
TestSlicerCount = IF(ISFILTERED(FinalTable[Month]), COUNTROWS(VALUES(FinalTable[Month])),0)
alyona22121995
3 years agoRegular Visitor
Is it possible to ignore some months for slicer count? so for example count all selected on slicer, except 9,10,11,12
thanks!