Forum Discussion
sy898661
7 years agoHelper V
which COUNT function to use?
I am trying to create a measure for % On Time Delivery. I have a column that lists the number of days a task takes. Our goal is under 90. I tried writing a measure that was: % OTD = DIVIDE(CO...
- 7 years ago
You're using 'board-Query'[Lot Disposition Duration] < 90 as the expression that you're counting.
Try this:
% OTD = DIVIDE(COUNTROWS(FILTER('board-Query', 'board-Query'[Lot Disposition Duration] < 90)), COUNTROWS('board-Query'))
Cmcmahan
7 years agoResident Rockstar
You're using 'board-Query'[Lot Disposition Duration] < 90 as the expression that you're counting.
Try this:
% OTD = DIVIDE(COUNTROWS(FILTER('board-Query', 'board-Query'[Lot Disposition Duration] < 90)), COUNTROWS('board-Query'))
- sy8986617 years agoHelper V
Thank you :)