Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
81 | |
79 | |
58 | |
35 | |
34 |
User | Count |
---|---|
99 | |
59 | |
56 | |
46 | |
40 |