Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors