Forum Discussion
Kalachuchi
6 years agoHelper III
Working with Count,summarize and filter
So I have a column EID and status, I only want to filter the completed and summarize it based on EID and after will count the rows. I got lost here don't know where would I put the summarize fun...
- 6 years ago
Hello @Kalachuchi
You can use this measure to get different EID values:
Cnt of Completed = CALCULATE(DISTINCTCOUNT('Table'[EID]),FILTER('Table','Table'[Status] = "Completed"))
_______________
If I helped, please accept the solution and give congratulations! 😀
Greg_Deckler
6 years agoCommunity Champion
Kalachuchi - Try -
Measure = COUNTROWS(DISTINCT(FILTER('Table1','Table1'[Status]="Completed")))
or
Measure = COUNTROWS(SUMMARIZE(FILTER('Table1','Table1'[Status]="Completed"),[EID]))