Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! 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 🙂
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 63 | |
| 55 | |
| 41 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 98 | |
| 80 | |
| 35 | |
| 29 | |
| 25 |