Forum Discussion

Clint's avatar
Clint
Helper V
7 years ago
Solved

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 t...
  • Ashish_Mathur's avatar
    7 years ago

    Hi,

    Does this work

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