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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
dvillegas
Frequent Visitor

Calculating Average with Prorated Values

I am trying to calculate the average score per month for a group of people. The calc should be sum of score divided by sum of months. The  problem I am having is when a person has more than one score for a month because they changed groups in the middle of a month. In these cases, those individuals scores are over-represented because their score is being counted for each group. How can I sum the scores to only count one value per month?

 

The data looks like the following:

Sample.PNG

 

 

 

 

 

 

 

As you can see Member 2 left Group B in the middle of March and entered Group C. As such, Member 2 has two entries for March but should only have one score for the month. Because of this, they will be counted twice in a normal average calculation.

 

The result I am expecting is 5.5 which is the sum of the score for each month (33) divided by the sum of monthly portions (6).

 

The result I am getting is 6.14 which is the sum of all the scores (43) divided by the sum of monthly portions (6).

 

Any help would be greatly appreciated.

1 ACCEPTED SOLUTION
dax
Community Support
Community Support

Hi dvillegas, 

You could use below measure to get 5.5

Measure 3 = SUMX(ALL(TEST),TEST[Score]*TEST[Monthly Portion])/SUMX(ALL(TEST),TEST[Monthly Portion])

350.PNG

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
dax
Community Support
Community Support

Hi dvillegas, 

You could use below measure to get 5.5

Measure 3 = SUMX(ALL(TEST),TEST[Score]*TEST[Monthly Portion])/SUMX(ALL(TEST),TEST[Monthly Portion])

350.PNG

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

parry2k
Super User
Super User

@dvillegas try following measures

 

Scores = SUMX( SUMMARIZECOLUMNS('Table'[MemberId], 'Table'[Month] ), CALCULATE( MAX( 'Table'[Score] ) ) )

Members = COUNTX( SUMMARIZECOLUMNS('Table'[MemberId], 'Table'[Month] ), CALCULATE( COUNTROWS( 'Table' ) ) )

Score / Member = DIVIDE( [Scores], [Members] )


Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

When I put these measures in a visualization, I receive the following error:

Sample2.PNG

 

 

 

 

 

 

 

 

 

 

Is this because I have

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.