Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 months ago
Solved

DAX Formula

  I have created PBI summarized table and I need another column DAX Formula column grant total divided by rows total NOT Sum of amount (later will add multiple columns)   like 5 /43 , 31/43 , 7/4...
  • cengizhanarslan's avatar
    5 months ago

    Please try the measure below:

    % of Total =
    DIVIDE(
        SUM('YourTable'[Amount]),
        CALCULATE(
            SUM('YourTable'[Amount]),
            ALLSELECTED('YourTable')
        )
    )