Forum Discussion

Syndicate_Admin's avatar
Syndicate_Admin
Administrator
4 years ago
Solved

Total % over rows.

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

  • Anonymous's avatar
    Anonymous
    4 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.

     

1 Reply

  • Anonymous's avatar
    Anonymous
    Not applicable

    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.