This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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 )
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 29 | |
| 27 | |
| 25 | |
| 20 | |
| 14 |
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 22 | |
| 19 | |
| 18 |