Forum Discussion
JawaharPrem6
Helper I
1 year ago% Calculation
Hi All, Need to calculate % like method as mentioned below, in measure Thanks Jawahar
- 1 year ago
JawaharPrem6 , Use the below DAX and format it as percentage
Percentage = var num = COUNT(EU_Data[TAT]) var den = CALCULATE(COUNT(EU_Data[TAT]),ALL(EU_Data)) RETURN DIVIDE(num,den,0)Did I answer your question ? Please mark my post as a solution.
Thanks,
Jai
- 1 year ago
Hi Jai,
thank you its works..
JawaharPrem6
Helper I
1 year agoHi,
thanks for your time, i used the mentioned dax but iam getting this error.
danextian
Super User
1 year agoIt's my first time seeing not being able to use % in a measure name. Have you tried renaming it?