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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
anshpalash
Helper II
Helper II

Division Calculation by Week Number

Hi all,

 

I have a dataset in the format as follows:

Week NumberDefect CodeDefect Count
110110
120320
110110
110210
212523
212322
212520

 

I am trying to calculate defect rate for a particular defect code by week. For example, the defect rate would be the total defect counts for that particular defect code divided by the total defect counts in that week. I want to plot a line graph where the axis would be week number, values would be defect rate and legend would be defect code. 

For example, in this case, defect rate for defect code 101 for week 1 would be (10+10)/(10+20+10+10) = 20/50 = 40%

 

Can anybody please guide me on how I can achieve similar calculation as above? Thank you!

1 ACCEPTED SOLUTION
johnt75
Super User
Super User

Create a measure as below

Defect Rate =
var currentCodeDefects = CALCULATE( SUM('Table'[Defect count]) )
var totalDefects = CALCULATE( SUM('Table'Defect count]), REMOVEFILTERS('Table'[Defect code]) )
return DIVIDE( currentCodeDefects, totalDefects )

View solution in original post

2 REPLIES 2
johnt75
Super User
Super User

Create a measure as below

Defect Rate =
var currentCodeDefects = CALCULATE( SUM('Table'[Defect count]) )
var totalDefects = CALCULATE( SUM('Table'Defect count]), REMOVEFILTERS('Table'[Defect code]) )
return DIVIDE( currentCodeDefects, totalDefects )

Thank you!

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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