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
Anonymous
Not applicable

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
 
1 ACCEPTED SOLUTION
v-cazheng-msft
Community Support
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.

vcazhengmsft_0-1655184368658.png

 

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

View solution in original post

4 REPLIES 4
v-cazheng-msft
Community Support
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.

vcazhengmsft_0-1655184368658.png

 

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

Samarth_18
Community Champion
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

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

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

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

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

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