Forum Discussion
francsaaa
2 years agoRegular Visitor
Incorrect value on the total sum
I have a calculations that shows the total residual value of -316 on the home move category on Excel but on powerbi, it is showing -1 on other (includ. impact upgrades). I want it to show -316 on Hom...
- Anonymous2 years ago
Hi francsaaa ,
A similar display effect can be achieved by the following formula.
result_ = VAR sum_ = CALCULATE ( SUM ( 'Table'[Value] ), ALL ( 'Table' ) ) RETURN IF ( MAX ( 'Table'[Cate] ) = "Home move", sum_, IF ( HASONEVALUE ( 'Table'[Cate] ), BLANK (), BLANK () ) )Best Regards,
Adamk KongIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
francsaaa
2 years agoRegular Visitor
Here is the DAX formular for the Residual Takeover:
Residual Takeover =
+CALCULATE(
[Total Entry RMR] ,
INST[Pricelist]= "Takeover"
) - [Total Volumne for Takeover]
francsaaa
2 years agoRegular Visitor
and how can i bring the -316 to Home move just like the excel format?