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
Solved! Go to Solution.
Hi @Anonymous ,
The first time you use the calculated column, you are actually calculating ('Sales'[TaxRate1]/'Sales'[Product]) for each row of the sales table, and when you put it into the visualization, you actually get the sum of ('Sales'[TaxRate1]/'Sales'[Product]). What we actually want is the result of (SUM('Sales'[Taxrate1])/SUM('Sales'[Taxrate1])), which is different from the result of ('Sales'[TaxRate1]/'Sales'[Product]).
Have you tried Ashish_Mathur's method yet? He should be right, if his answer is helpful to you, please don't forget to mark his answer as a solution, it will help more people.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Hi,
Write these measures (not calculated column formulas)
Products = sum(Sales[Product])
Tax rate = sum(Sales[Tax rate1])
HST as a % of sales = divide([Tax rate],[Products])
Hope this helps.
Hi @Anonymous
product and tax rate are columns or measures? If columns try to divide the SUM of each
it is column, I tried but still got the wield numbers with the total 64.86. it should be 10.68% if the calculation is correct. 😂
Hi @Anonymous ,
The first time you use the calculated column, you are actually calculating ('Sales'[TaxRate1]/'Sales'[Product]) for each row of the sales table, and when you put it into the visualization, you actually get the sum of ('Sales'[TaxRate1]/'Sales'[Product]). What we actually want is the result of (SUM('Sales'[Taxrate1])/SUM('Sales'[Taxrate1])), which is different from the result of ('Sales'[TaxRate1]/'Sales'[Product]).
Have you tried Ashish_Mathur's method yet? He should be right, if his answer is helpful to you, please don't forget to mark his answer as a solution, it will help more people.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
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 |
---|---|
93 | |
90 | |
84 | |
70 | |
49 |
User | Count |
---|---|
141 | |
120 | |
112 | |
60 | |
59 |