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
Dear all
I have a problem with the grand total calculation.
I have uploaded my pbix. I think this way is the easiest way to explain and understand my problem. I need to receive a correct grand total for 'POS amount' column.
Please help me with this issue.
Solved! Go to Solution.
First question, in 'Cards Mapping' it looks like there is a duplicate value. Could this be causing some problem?
For the total calc I would do the following:
First write a couple measures to make the last setp easier
TotalCardExp = sum( 'Cards YTD'[Total Card Exp] ) POS%measure = sum( 'Cards Mapping'[POS%] )
Then you can write a measure that will go through the 'FULL ACC' table and do your calc.
POSAmount = SUMX ( 'FULL ACC', [TotalCardExp] * [POS%measure] )
The problem you are seeing in your report is that Grand Totals are not the sum of all the numbers above, they are the measure calculated with no filters so it is giving you [Total Card Exp] * [POS%] -6,556,122.88 * 17.79 = -116,631,611.78
First question, in 'Cards Mapping' it looks like there is a duplicate value. Could this be causing some problem?
For the total calc I would do the following:
First write a couple measures to make the last setp easier
TotalCardExp = sum( 'Cards YTD'[Total Card Exp] ) POS%measure = sum( 'Cards Mapping'[POS%] )
Then you can write a measure that will go through the 'FULL ACC' table and do your calc.
POSAmount = SUMX ( 'FULL ACC', [TotalCardExp] * [POS%measure] )
The problem you are seeing in your report is that Grand Totals are not the sum of all the numbers above, they are the measure calculated with no filters so it is giving you [Total Card Exp] * [POS%] -6,556,122.88 * 17.79 = -116,631,611.78
Thank you very much.
And another big thanks for dublicate value. It was a problem and I couldn't find the source 🙂
You solved my two problems with one post 🙂 Thank you again.
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 |
|---|---|
| 61 | |
| 54 | |
| 41 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 106 | |
| 99 | |
| 38 | |
| 29 | |
| 28 |