Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not 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 shows 12 instead of 0. How can i avoid this?
pbi5.PNGpbi6.PNG
 
 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

I managed to make it work , thank you @amitchandak .

 

I used this , 

TestSlicerCount = IF(ISFILTERED(FinalTable[Month]), COUNTROWS(VALUES(FinalTable[Month])),0)

View solution in original post

6 REPLIES 6
amitchandak
Super User
Super User

@Anonymous . try like

countx(allselected(table),table[column])

 

Or

measure =
Var _1 = countx(allselected(table),table[column])
var _2 = countx(all(table),table[column])

return
if(_1=_2 =0,_1)

Anonymous
Not applicable

@amitchandak  ,

 

That didn't work , it shows the value as 448 now , i had edited the message just before you replied , maybe you can get a better understanding now

@Anonymous , try

measure =
Var _1 = calculate(distinctCOUNT(table[column]),allselected(table))
var _2 = calculate(distinctCOUNT(table[column]),all(table))

return
if(_1=_2 =0,_1)

Anonymous
Not applicable

Anonymous
Not applicable

I managed to make it work , thank you @amitchandak .

 

I used this , 

TestSlicerCount = IF(ISFILTERED(FinalTable[Month]), COUNTROWS(VALUES(FinalTable[Month])),0)

Is it possible to ignore some months for slicer count? so for example count all selected on slicer, except 9,10,11,12
thanks!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.