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

Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM. Register now.

Reply
RashmitaR
Helper IV
Helper IV

how to find the difference between values entered for current month minus previous month

Hi i have the following columns

 

  1. BLD_FTE(values)
  2. date
  3. month name 
  4. year
  5. cust_name

In my matrix i wish to display cust_name,month wise values also MOM.

I want to create a column named MOM which will save the difference between the values which belonged to the current month minus the values which were enetered for the previous month.

Please help with the same.

 

3 REPLIES 3
ankitpatira
Community Champion
Community Champion

@RashmitaR Not sure if i understood you correctly but are you after a measure that gives you sum of all values in current month - sum of all values in previous month ?

@ankitpatira yes thats right.

Anonymous
Not applicable

Hi @RashmitaR,

Firstly, in your scenario, you need to have a calendar table, then create relationship using date columns between your current table and the calendar table.
1.PNG


Secondly, create a measure using the following formula.

MOM = SUM(Table1[BLD_FTE])-CALCULATE(SUM(Table1[BLD_FTE]),PREVIOUSMONTH(Table1[date]))


Thirdly, you are able to display the monthly change value of BLD_FTE in visual as shown in the following screenshot. For more details, please review the example in this attached PBIX file.
2.PNG


Thanks,
Lydia Zhang

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors