Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I have a sales table with the company, date, invoice number, product and amount.
I would like to know the formulas for the columns Amount2 and amount3 . Amount 2 is the % of each product on the total sales (what would be in excel the % of the tpotal) and amount3 is % of each product on the total sales of each company (which would be in excel the % of the main total with baase the company)
product company Importe1 Import2 Import3
EMP1 TO 7,668.00 € 33,75% 55,20%
B 2,306.52 € 10,15% 16,60%
C 2,677.46 € 11,79% 19,27%
D 1,240.00 € 5.46% 8.93%
Total EMP1 13,891.98 € 61,15% 100.00%
EMP2 TO 2,364.00 € 10,41% 26,78%
B 2,965.68 € 13,05% 33,60%
C 2,401.36 € 10,57% 27,20%
D 1,096.00 € 4.82% 12.42%
Total EMP2 8,827.04 € 38.85% 100.00%
General total 22,719.02 € 100.00%
Thank you
Solved! Go to Solution.
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.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
86 | |
82 | |
70 | |
49 |
User | Count |
---|---|
143 | |
122 | |
109 | |
60 | |
55 |