Forum Discussion
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 ) :
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_18Community 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
- AnonymousNot 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_18Community 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-msftCommunity 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