Forum Discussion

scarbajo's avatar
scarbajo
Frequent Visitor
9 years ago
Solved

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's avatar
    9 years ago

    scarbajo

     

    hi, try with this:

     

    % of AccountGroup1 =
    DIVIDE (
        SUM ( Table2[BUDGET] ),
        CALCULATE (
            SUM ( Table2[BUDGET] ),
            FILTER ( ALL ( Table2 ), Table2[ACCOUNT GROUP] = "01" )
        )
    )