Forum Discussion

bhavick360's avatar
bhavick360
New Member
1 year ago
Solved

DAX Calculation

What is my dax calculation to get percentage on the table below first line should be 26.4%?

3541/13388

 

  • Hello,

    Percentage = DIVIDE(SUM([Handset]), SUM([Insurance]), 0) 
    


    then format as percentage

2 Replies

  • Gabry's avatar
    Gabry
    Super User

    Hello,

    Percentage = DIVIDE(SUM([Handset]), SUM([Insurance]), 0) 
    


    then format as percentage

  • Hi bhavick360 , please use the below measure

     

    Percentage = DIVIDE(SUM(Table[Insurance],SUM(Table[Handset]),0)

     

    Format the above measure as %

    Thanks,

    Jai