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.
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))
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
143 | |
79 | |
63 | |
52 | |
47 |
User | Count |
---|---|
212 | |
89 | |
76 | |
66 | |
60 |