Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi Experts,
I want to show percentage of previous month. After creating formula
prev got this value instead of 268642.83 total it is showing 2601461.69.
Solved! Go to Solution.
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 , dateadd need the continuous date, so if the date is not present in table or last month the same date is not present it will give the wrong answer. That is why we need to use date table, which has continous date
example, see for the date where I do not have one month old dates. Any mssing date in this month and last month can casue diff
Hi @amitchandak ,
I have continuous dates. Thats why Row wise i got correct answer. only problem is with Total.
See above data is there for 1 2 and 3rd oct and nov. but still got incorrect total.
See Row wise prev is correct only total is incorrect. it sould be 268642.83.
I have also created same thing using calendar table still getting incorrect and blank answer.
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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
118 | |
84 | |
49 | |
38 | |
28 |
User | Count |
---|---|
185 | |
73 | |
73 | |
50 | |
42 |