Forum Discussion

RashmitaR's avatar
RashmitaR
Icon for Helper IV rankHelper IV
10 years ago

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

  • ankitpatira's avatar
    ankitpatira
    Icon for Community Champion rankCommunity 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 ?

      • Anonymous's avatar
        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.



        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.



        Thanks,
        Lydia Zhang