Forum Discussion
Total % over rows.
- Anonymous4 years ago
Hi teixidor ,
Here's my solution.
1.Importe2 is to put the Imprte1 field into the value, and then select show value as 'Percent of grand total'.
Tips: You can rename the field.
2.Importe3 is measure, it is as follows.
Importe3 = var _total=CALCULATE(SUM('Table'[Importe1]),ALLEXCEPT('Table','Table'[empresa])) return DIVIDE(SUM('Table'[Importe1]),_total)You can check more details from the attachment.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi teixidor ,
Here's my solution.
1.Importe2 is to put the Imprte1 field into the value, and then select show value as 'Percent of grand total'.
Tips: You can rename the field.
2.Importe3 is measure, it is as follows.
Importe3 = var _total=CALCULATE(SUM('Table'[Importe1]),ALLEXCEPT('Table','Table'[empresa]))
return DIVIDE(SUM('Table'[Importe1]),_total)
You can check more details from the attachment.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.