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
Hi All,
I have a fundamental issue that I am sure is very simple but I can't seem to find a solution.
Here is a sample table with data:
| OrderID | Delay (Days) |
| 1 | 3 |
| 2 | 5 |
| 3 | 8 |
| 4 | 9 |
| 5 | 2 |
| 6 | 5 |
I want to determine how many orders have a delay bigger that 7, devided by the total number of orders. Thus it should be:
[2 (The count of 8 and 9)]/[6 (Count of total entries)] = 33%.
Thanks for the help!
Solved! Go to Solution.
Hi @DieLem
Try this MEASRE
MEasure =
COUNTROWS ( FILTER ( TableName, TableName[Delay (Days)] > 7 ) )
/ COUNTROWS ( TableName )
Hi @DieLem
Try this MEASRE
MEasure =
COUNTROWS ( FILTER ( TableName, TableName[Delay (Days)] > 7 ) )
/ COUNTROWS ( TableName )
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 |
|---|---|
| 53 | |
| 51 | |
| 36 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |