Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
miguesnet
Frequent Visitor

NB IF

Hi, 

 

I am trying to calculate the nb of weeks we are above a saturation rate of 90% ,

 

Ex : 

WeekWorkloadCapacity
1100100
290100
392100
480100
581100
695100
7100100
875100
985100
1098100

 

 

Measure :  Saturation rate = Workload / Capacity

 

Expected result : 4

 

Thanks in advance for your help

 

Mickael

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

Try the below formula:

saturation above 90 = 
var summaryTable = ADDCOLUMNS('Table', "saturation", DIVIDE('Table'[Workload], 'Table'[Capacity]))
RETURN COUNTROWS(FILTER(summaryTable, [saturation] > 0.9))

View solution in original post

2 REPLIES 2
miguesnet
Frequent Visitor

Thanks a lot for your helps vicky_

vicky_
Super User
Super User

Try the below formula:

saturation above 90 = 
var summaryTable = ADDCOLUMNS('Table', "saturation", DIVIDE('Table'[Workload], 'Table'[Capacity]))
RETURN COUNTROWS(FILTER(summaryTable, [saturation] > 0.9))

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.