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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Users online (3,623)