Forum Discussion
mohsinmasood
2 years agoFrequent Visitor
Financial Statements Dax Measures
I have financial statement format for that i am using measures with switch to display the value but one of the measures is not giving me right value when placed with switch function alone that measur...
Joe_Barry
Solution Sage
2 years agoPlease try the below
But what are trying achive here with this part? +[Net Profit for Equity]
Reserves =
CALCULATE(
SUM('Financial Data'[Accounted Net]),
KEEPFILTERS('Financial Data'[Group dUPLICATE acc type] IN {"Owners", "equity"),
ALL('Financial Data'[Accounted Net])
- mohsinmasood2 years agoFrequent Visitor
actually i am trying to build Balance sheet where we have to add net income for the year to owners equity
- Joe_Barry2 years ago
Solution Sage
Hi mohsinmasood
So you need to add [Net Profit for Equity] to the answer of the first part?
Reserves = VAR _OwnEq = CALCULATE( SUM('Financial Data'[Accounted Net]), KEEPFILTERS('Financial Data'[Group dUPLICATE acc type] IN {"Owners", "equity"), ALL('Financial Data'[Accounted Net]) RETURN _OwnEq + [Net Profit for Equity]Presuming [Net Profit for Equity] is a measure