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

Month over Month

Hello!

 

I am trying to figure out why calculation to show previous month load volume is not adding correctly. 

 

Last Month =
CALCULATE([Load Count],
PARALLELPERIOD(Table Name[Actual Delivery].[Date],-1,MONTH))

 

Currently the Formula I am using- 

 

For Some reason It adds up the previous calculation instead of pulling only the last month value. 

 

The table should read 

blank, 510, 527, 843 etc.

Csmith31_0-1634756236003.png

 

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi,@Csmith31 

You can try the following methods:

1. Create a new date calculation column to calculate the actual time of the previous month of the current row.

Date =
PARALLELPERIOD ( 'Table'[Mouth], -1, MONTH )

vzhangti_0-1635128150113.png

2. Use the Date column to match the value that Last Mouth should display.

Last Month =
CALCULATE (
    MIN ( 'Table'[Load Volume] ),
    FILTER ( 'Table', 'Table'[Mouth] = EARLIER ( 'Table'[Date] ) )
)

vzhangti_1-1635128269402.png

3. If you don't want to display the Date column, you can choose to hide it in the view.

vzhangti_2-1635128327391.jpeg

Best Regards

Community Support Team _Charlottez  Zhang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

2 REPLIES 2
v-zhangti
Community Support
Community Support

Hi,@Csmith31 

You can try the following methods:

1. Create a new date calculation column to calculate the actual time of the previous month of the current row.

Date =
PARALLELPERIOD ( 'Table'[Mouth], -1, MONTH )

vzhangti_0-1635128150113.png

2. Use the Date column to match the value that Last Mouth should display.

Last Month =
CALCULATE (
    MIN ( 'Table'[Load Volume] ),
    FILTER ( 'Table', 'Table'[Mouth] = EARLIER ( 'Table'[Date] ) )
)

vzhangti_1-1635128269402.png

3. If you don't want to display the Date column, you can choose to hide it in the view.

vzhangti_2-1635128327391.jpeg

Best Regards

Community Support Team _Charlottez  Zhang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

ryan_mayu
Super User
Super User

@Anonymous 

pls try to add a calendar table and use DATEADD.

https://docs.microsoft.com/en-us/dax/dateadd-function-dax

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




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