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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi,
In my table visual, some of the columns (as circled) are showing the total in the total section but others are showing the last month's value. I am not able to understand this. Can someone please explain it? Also, if I need to show only the last month's value of circled columns (Profit Goal etc.), then how do I show it in totals?
Solved! Go to Solution.
Hi @ashwinijain932 ,
The total in visual is not simply the sum of rows, it is also a calculated value that is affected by the formula.
You could use isinscope() function.
new measure = IF(ISINSCOPE([Month]),[Measure],SUMX(ALLSELECTED(table),[Measure]))
Best Regards,
Jay
Hi @ashwinijain932 ,
The total in visual is not simply the sum of rows, it is also a calculated value that is affected by the formula.
You could use isinscope() function.
new measure = IF(ISINSCOPE([Month]),[Measure],SUMX(ALLSELECTED(table),[Measure]))
Best Regards,
Jay
@ashwinijain932 , you need for force sum from line level
Sumx(Values(Date[Month]), [Your Measure])
refer why my grand total is wrong - https://www.youtube.com/watch?v=ufHOOLdi_jk
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 51 | |
| 39 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 94 | |
| 81 | |
| 34 | |
| 29 | |
| 25 |