Forum Discussion
Syndicate_Admin
3 years agoAdministrator
Count Excesses and Defects with pooled data
Dear, I am writing to you asking for help with the problem I am having. To make it better understood, I made a small query with fictitious data that I think can serve (the query is called Example) ...
- 3 years ago
Hi,
Write these measures
Detour value = SUM(Data[Detour])Excesses = COUNTROWS(FILTER(VALUES(Data[Day]),[Detour value]>0))Defects = COUNTROWS(FILTER(VALUES(Data[Day]),[Detour value]<0))Hope this helps.
Ashish_Mathur
3 years agoSuper User
Hi,
Write these measures
Detour value = SUM(Data[Detour])Excesses = COUNTROWS(FILTER(VALUES(Data[Day]),[Detour value]>0))Defects = COUNTROWS(FILTER(VALUES(Data[Day]),[Detour value]<0))
Hope this helps.
Syndicate_Admin
3 years agoAdministrator
Thank you very much for your solution! You saved me
- Ashish_Mathur3 years agoSuper User
Please mark my reply as Answer - the reply which carries the solution.