Forum Discussion

sy898661's avatar
sy898661
Helper V
7 years ago
Solved

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...
  • Cmcmahan's avatar
    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'))