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
ahjuang
New Member

Weighted Result based on Recent Month

NameMonthRating(1-5) Current  Month = 60% weighted   
SafetyJanuary1 -1 Month = 30% Weighted 
SafetyFebruary1 -2 Month = 10% Weighted 
SafetyMarch5   
SafetyApril5 March's  Safety Rating =3.4
CollaborationJanuary5 April's Safety Rating =4.6
CollaborationFebruary1   
CollaborationMarch5 March's Collaboration Rating =3.8
CollaborationApril4 April's Collaboration Rating =

4

 

 

In Dax, anyone can tell me how to get the result of the march's safety and collaboration rating when March is select,  and when April is selected, April result get output or what would be the best solution?

1 ACCEPTED SOLUTION
dedelman_clng
Community Champion
Community Champion

Step 1 - convert your "month" column to a date (first of the month); create a relationship to a date table

 

Step 2 - 3 measures

 

PM Rating = CALCULATE(SUM(Weighted[Rating]), PREVIOUSMONTH(Weighted[Dt]))

PPM Rating = CALCULATE(SUM(Weighted[Rating]), PREVIOUSMONTH(PREVIOUSMONTH(Weighted[Dt])))

This Month Rating = SUM(Weighted[Rating])*.6 + [PM Rating]*.3 + [PPM Rating]*.1

Capture.PNG

 

You may want to do some "IF (ISBLANK ( " logic in the measures so that you don't get values for months that don't have 2 previous months.

 

Hope this helps,

David

View solution in original post

1 REPLY 1
dedelman_clng
Community Champion
Community Champion

Step 1 - convert your "month" column to a date (first of the month); create a relationship to a date table

 

Step 2 - 3 measures

 

PM Rating = CALCULATE(SUM(Weighted[Rating]), PREVIOUSMONTH(Weighted[Dt]))

PPM Rating = CALCULATE(SUM(Weighted[Rating]), PREVIOUSMONTH(PREVIOUSMONTH(Weighted[Dt])))

This Month Rating = SUM(Weighted[Rating])*.6 + [PM Rating]*.3 + [PPM Rating]*.1

Capture.PNG

 

You may want to do some "IF (ISBLANK ( " logic in the measures so that you don't get values for months that don't have 2 previous months.

 

Hope this helps,

David

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.