Forum Discussion
Incorrect Previous month total
- 5 years ago
Hi, Uzi2019
According to your picture and description, I guess that you want to make the total row of [prev] display the correct total value, you can create a new measure [prev_new]:
prev_new = var _new=SUMMARIZE('Table','Table'[date],"_value",[prev]) return IF(HASONEVALUE('Table'[date]),[prev],SUMX(_new,[_value]))You should replace the ‘Table’ with your table name, and place this measure into the table chart.
And you can get what you want.
If this result is not what you want, you can post some sample data(without sensitive data) so that we can help you in advance.
How to Get Your Question Answered Quickly
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Uzi2019 , for time intelligence use date table, any missing date will cause the issue
Hi amitchandak ,
Thanks for your reply.
As I mentioned, I am getting incorrect Prev Month Total which leads to incorrect MoM Growth. So first we have to rectify previous month figure. Individual rows are coming correctly but total is incorrect.