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!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Hi,
I am trying to calculate the nb of weeks we are above a saturation rate of 90% ,
Ex :
| Week | Workload | Capacity |
| 1 | 100 | 100 |
| 2 | 90 | 100 |
| 3 | 92 | 100 |
| 4 | 80 | 100 |
| 5 | 81 | 100 |
| 6 | 95 | 100 |
| 7 | 100 | 100 |
| 8 | 75 | 100 |
| 9 | 85 | 100 |
| 10 | 98 | 100 |
Measure : Saturation rate = Workload / Capacity
Expected result : 4
Thanks in advance for your help
Mickael
Solved! Go to Solution.
Try the below formula:
saturation above 90 =
var summaryTable = ADDCOLUMNS('Table', "saturation", DIVIDE('Table'[Workload], 'Table'[Capacity]))
RETURN COUNTROWS(FILTER(summaryTable, [saturation] > 0.9))
Thanks a lot for your helps vicky_
Try the below formula:
saturation above 90 =
var summaryTable = ADDCOLUMNS('Table', "saturation", DIVIDE('Table'[Workload], 'Table'[Capacity]))
RETURN COUNTROWS(FILTER(summaryTable, [saturation] > 0.9))
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 49 | |
| 30 | |
| 25 | |
| 23 |
| User | Count |
|---|---|
| 131 | |
| 103 | |
| 58 | |
| 39 | |
| 31 |