Hello!
I am trying to figure out why calculation to show previous month load volume is not adding correctly.
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.
Solved! Go to Solution.
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 )
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] ) )
)
3. If you don't want to display the Date column, you can choose to hide it in the view.
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.
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 )
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] ) )
)
3. If you don't want to display the Date column, you can choose to hide it in the view.
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.
@Anonymous
pls try to add a calendar table and use DATEADD.
https://docs.microsoft.com/en-us/dax/dateadd-function-dax
Proud to be a Super User!
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
Put your data visualization and design skills to the test! This exciting challenge is happening now through May 31st!
User | Count |
---|---|
389 | |
103 | |
65 | |
53 | |
49 |
User | Count |
---|---|
372 | |
120 | |
80 | |
68 | |
57 |