Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Hello,
i am facing a issue with measure total in KPI i am getting 0 instead of -2, Please find below data.
Month-Year | FTE | Net Movement (FTE) |
Jan-21 | 76.25 | |
Feb-21 | 76.25 | 0 |
Mar-21 | 75.75 | -0.5 |
Apr-21 | 75.75 | 0 |
May-21 | 76 | 0.25 |
Jun-21 | 75.75 | -0.25 |
Jul-21 | 74.75 | -1 |
Aug-21 | 74.75 | 0 |
Sep-21 | 74.75 | 0 |
Oct-21 | 74.25 | -0.5 |
Nov-21 | 74.25 | 0 |
Dec-21 | 74.25 | 0 |
Total | -2 |
Below is the calculation for Net Movement below
Solved! Go to Solution.
Hi @Gangasaniravi ,
This seems to be caused by an incorrect measure total.
You can also create a measure based on [Net Movement].
result=
var _b = SUMMARIZE('table','table'[date],"aaa",'table'[Net Movement])
return
IF(HASONEVALUE('table'[date]),[Net Movement],SUMX(_b,[aaa]))
Or you can refer to my pbix file.
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Gangasaniravi ,
This seems to be caused by an incorrect measure total.
You can also create a measure based on [Net Movement].
result=
var _b = SUMMARIZE('table','table'[date],"aaa",'table'[Net Movement])
return
IF(HASONEVALUE('table'[date]),[Net Movement],SUMX(_b,[aaa]))
Or you can refer to my pbix file.
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.