Forum Discussion
Fusilier
1 year agoHelper III
Help with % measure
Hi, I have a problem with this measure: %fromAll SBCLGA = DIVIDE( SUM('Raw Data'[row count]), CALCULATE(SUM('Raw Data'[row count]), all('Raw Data'[Answers aggregated]))) The table below i...
- 1 year ago
I tried with a sample data and simple calculation. It's getting as expected
- Anonymous1 year ago
Hi Fusilier ,
As Kaviraj11 said. You just need to create a simple dax expressions.Disagree percentage = DIVIDE( SUM('Table'[Disagree]), CALCULATE( SUM('Table'[Agree])+SUM('Table'[Disagree])+SUM('Table'[Neutral]), ALL('Table') ) )This will return the percentage of each row of data in the total data and provide the sum
Best regards,
Albert HeIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Anonymous
1 year agoNot applicable
Hi Fusilier ,
As Kaviraj11 said. You just need to create a simple dax expressions.
Disagree percentage =
DIVIDE(
SUM('Table'[Disagree]),
CALCULATE(
SUM('Table'[Agree])+SUM('Table'[Disagree])+SUM('Table'[Neutral]),
ALL('Table')
)
)
This will return the percentage of each row of data in the total data and provide the sum
Best regards,
Albert He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly