Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
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(COUNTAX('board-Query', 'board-Query'[Lot Disposition Duration] < 90), COUNTROWS('board-Query'))
But I keep getting 100% or over 100%...which is not true!!! 😞
How do I count the number of rows who's values are 90 or less?
Thanks 🙂
Solved! Go to Solution.
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'))
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'))
Thank you 🙂
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
72 | |
62 | |
51 | |
48 |
User | Count |
---|---|
204 | |
86 | |
62 | |
59 | |
56 |