Forum Discussion
subtract value from different rows
- 8 years ago
Hi Anonymous,
Per my understand about Measure and Grand Total in Power BI. The Measure is based on Row Content, so it can use the conditions in SWITCH() function. However the Grand Total is based on entire Table Content, it cannot check each conditions in SWITCH(). It also means that the Grand Total is just sum on CALCULATE(SUM('TFINANG'[Amount])) not the values of measure.
To get the right Grand Total, you can create a new table with Measure values as its row content. Like:
New Table Adj Amount = SUMMARIZE ( TFINANG, TFINANG[Group], TFINANG[TimeLine], "Adj", IF ( TFINANG[Group] = "L10000", SUM ( TFINANG[Amount] ) - CALCULATE ( SUM ( TFINANG[Amount] ), TFINANG[Group] = "L20000" ), SUM ( TFINANG[Amount] ) ) )Thanks,
Xi Jin.
Have you tried using quick measures?
- Anonymous8 years agoNot applicable
i just did thanks, and it nearly got me there. the row amounts are perfect, but the total is messing up now. take a look.
the total should be £178,612
thanks
- v-xjiin-msft8 years agoSolution Sage
Hi Anonymous,
Per my understand about Measure and Grand Total in Power BI. The Measure is based on Row Content, so it can use the conditions in SWITCH() function. However the Grand Total is based on entire Table Content, it cannot check each conditions in SWITCH(). It also means that the Grand Total is just sum on CALCULATE(SUM('TFINANG'[Amount])) not the values of measure.
To get the right Grand Total, you can create a new table with Measure values as its row content. Like:
New Table Adj Amount = SUMMARIZE ( TFINANG, TFINANG[Group], TFINANG[TimeLine], "Adj", IF ( TFINANG[Group] = "L10000", SUM ( TFINANG[Amount] ) - CALCULATE ( SUM ( TFINANG[Amount] ), TFINANG[Group] = "L20000" ), SUM ( TFINANG[Amount] ) ) )Thanks,
Xi Jin.- Anonymous8 years agoNot applicable
thanks
worked a treat