Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Previous month sales

Hi All,

 

Previously thanks for the help,

I have calculated previous month sum of values with using formula as below (Which is working fine ) :

Previous Month  = CALCULATE(SUM(data[data_A]),DATEADD(Dates[Date_2022],-1,MONTH) )
 
But now I want to calculate same previous month value but in this formula I have to use Filter-condition and I am getting blank values please find the below used formula :
 
Previous month = CALCULATE(SUM(TableA[A]),FILTER(TableA,TableA[Value] = "EW"),DATEADD(Dates[Date_2022],-1,MONTH))
Please help me on this.
 
Thanks
Shipra
 
  • Hi Anonymous,

     

    You may try this Measure.

    Previous_month = CALCULATE(SUM(TableA[A]),DATEADD(Dates[Date_2022],-1,MONTH),FILTER(TableA,TableA[Value]="EW"))

     

    The result will look like this.

     

    Also, attached the pbix file as reference.

     

    If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

     

    Best Regards,

    Community Support Team _ Caiyun

4 Replies

  • Samarth_18's avatar
    Samarth_18
    Community Champion

    Hi Anonymous ,

    Please try this:-

    Previous month =
    CALCULATE (
        SUM ( TableA[A] ),
        FILTER ( TableA, TableA[Value] = "EW" ),
        FILTER ( ALL ( Dates ), DATEADD ( Dates[Date_2022], -1, MONTH ) )
    )
    

    BR,

    Samarth

    • Anonymous's avatar
      Anonymous
      Not applicable

      Hi Samarth_18 ,

       

      Thanks for the reply.

      I am getting incorrect output using this formula. Kindly help if any other formula available.

       

      Thanks

      Shipra

      • Samarth_18's avatar
        Samarth_18
        Community Champion

        Anonymous , Its bit difficult to answer without data and expected output. You could try this as well:-

        Previous month =
        CALCULATE (
            SUM ( TableA[A] ),
            FILTER ( TableA, TableA[Value] = "EW" ),
            FILTER (  Dates , DATEADD ( Dates[Date_2022], -1, MONTH ) )
        )

        or please share the sample data in text format(not a screenshot) with expected output.

  • v-cazheng-msft's avatar
    v-cazheng-msft
    Community Support

    Hi Anonymous,

     

    You may try this Measure.

    Previous_month = CALCULATE(SUM(TableA[A]),DATEADD(Dates[Date_2022],-1,MONTH),FILTER(TableA,TableA[Value]="EW"))

     

    The result will look like this.

     

    Also, attached the pbix file as reference.

     

    If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

     

    Best Regards,

    Community Support Team _ Caiyun