Forum Discussion
scarbajo
9 years agoFrequent Visitor
DAX : TOTAL % ROW OF ONE OF THE ROWS (NOT TOTAL)
Hello! I have a request regarding a measure that calculates % (Budget) of Total Budget of Account Group "01" Is there any DAX expert around that can help me with this :) Thanks AC...
Vvelarde
9 years agoCommunity Champion
hi, try with this:
% of AccountGroup1 =
DIVIDE (
SUM ( Table2[BUDGET] ),
CALCULATE (
SUM ( Table2[BUDGET] ),
FILTER ( ALL ( Table2 ), Table2[ACCOUNT GROUP] = "01" )
)
)