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
Clint
Helper V
Helper V

Counting rows based on multiple values

Hello,

 

I need to count rows in a table that meet two criteria:

- Task percent complete equals 100

- Task name contains the word "sprint"

 

I have the following measures that counts the rows that contain the word sprint but I don't know how to add the second criteria for  task complete=100.   Any insight is greatly appreciated.

M_Count of Sprints = COUNTROWS(

Filter('tasks',

Containsstring([Task Name],"sprint")

))

1 ACCEPTED SOLUTION
Ashish_Mathur
Super User
Super User

Hi,

Does this work

M_Count of Sprints = COUNTROWS(Filter('tasks',Containsstring([Task Name],"sprint")&&[Task Percent]=100))


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

View solution in original post

3 REPLIES 3
Ashish_Mathur
Super User
Super User

Hi,

Does this work

M_Count of Sprints = COUNTROWS(Filter('tasks',Containsstring([Task Name],"sprint")&&[Task Percent]=100))


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hello @Ashish_Mathur ,

 

Yes, with a slight modification, it does.

M_Count of Sprints complete =
COUNTROWS(Filter('tasks',Containsstring([Task Name],"sprint")&&[Task Percent Completed]="100"))
 
I had to put the task percent completed value in quotes to get it to evaluate.  Otherwise BI complained about comparing integers and text.  The values returned seem to be correct however.  Thank you for showing me how to combine both into one filter.

You are welcome.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

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.

Top Solution Authors