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