Forum Discussion
bhavick360
1 year agoNew Member
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
- GabrySuper User
Hello,
Percentage = DIVIDE(SUM([Handset]), SUM([Insurance]), 0)
then format as percentage - Jai-RathinavelSuper User
Hi bhavick360 , please use the below measure
Percentage = DIVIDE(SUM(Table[Insurance],SUM(Table[Handset]),0)
Format the above measure as %
Thanks,
Jai