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
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.

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

Community Support Team _ Lydia Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.

Top Solution Authors