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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Hodor
Regular Visitor

Is there an equivalent to COUNTIFS based on dynamic value from a slicer input in DAX?

Hello,

I have a table called "List" with two column...Name, and Team such as this:

 

 

I would like to create a measure to count the number of Names (rows) that belong to the same Team as the name slected in a slicer.

For example, I have a slicer for the Name column... If I select Charlie from that slicer, I could like a measure to output 3 because Charlie is in team B and there are 3 Names in team B.

 

 

I have the following DAX: CALCULATE (COUNTROWS('List'),FILTER('List','List'[Team]=SELECTEDVALUE('List'[Team])))

But it isn't calculating correctly.

 

Please Help!

1 ACCEPTED SOLUTION
Anonymous
Not applicable

[Team Count] =
var __oneNameSelected = hasonefilter ( T[Name] )
var __teamCount =
	calculate(
		countrows ( T ),
		all ( T ),
		values ( T[Team] )
	)
return
	if(
		__oneNameSelected,
		__teamCount
	)

Best

Darek

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

[Team Count] =
var __oneNameSelected = hasonefilter ( T[Name] )
var __teamCount =
	calculate(
		countrows ( T ),
		all ( T ),
		values ( T[Team] )
	)
return
	if(
		__oneNameSelected,
		__teamCount
	)

Best

Darek

Thank you!!

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.

Top Solution Authors