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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Fidezuri1990
Helper I
Helper I

Month to Month Change % Formula not showing correctly

Hi,

I have 3 KPIs: KPI01, KPI06 & KPI07. I am trying to calculate the month-to-month change for each KPI. As an example, Aug KPI01 minus July KPI01, and Sep KPI01 minus Aug KPI01. However, the output showed totally different values. It takes Jul KPI06 minus Jul KPI01. I attached the formula and the table. Looking forward to some advice. Thank you.

 

Refer to last column for the outputs.

Fidezuri1990_0-1723165646386.png

 

The formula.

Fidezuri1990_1-1723165670333.png

Thank you. 

 

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@Fidezuri1990 

pls try this

Column =
var _last=maxx(FILTER('Table','Table'[KPI No.]=EARLIER('Table'[KPI No.])&&'Table'[Date]=EDATE(EARLIER('Table'[Date]),-1)),'Table'[Final Assessed APS%])
return if(ISBLANK(_last),blank(),'Table'[Final Assessed APS%]-_last)
 
11.PNG




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

1 REPLY 1
ryan_mayu
Super User
Super User

@Fidezuri1990 

pls try this

Column =
var _last=maxx(FILTER('Table','Table'[KPI No.]=EARLIER('Table'[KPI No.])&&'Table'[Date]=EDATE(EARLIER('Table'[Date]),-1)),'Table'[Final Assessed APS%])
return if(ISBLANK(_last),blank(),'Table'[Final Assessed APS%]-_last)
 
11.PNG




Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors