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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

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
PBIApril_Carousel

Power BI Monthly Update - April 2025

Check out the April 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors