The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello,
I'm working on Power BI and I am meeting a problem. I created a first measure which calculate the sum of sales by partner :
In this table, I display the top ten of my partners, the total of sale is 100M€. I would like create a second measure which calculate the part of a partner in the total sale (A1 : 6,228,028/100,000,000 = 6.2%). But I don't know howw create a measure which calculate the total sum of sales.
Thank you for your help.
Solved! Go to Solution.
Hi @JbPa33
Use Calculate and ALL dax functions to remove filters from your partner.
something like :
All - removes all the filters from the partners including "top n" that you using so it will calculate the percent from the grand total as you need.
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Hi,
Assuming sale is a measure, write these measures
Sale of top 10 partners = SUMX(TOPN(10,all(Data[partners),[sale],desc),[sale])
Contribution (%) = divide([sale],[Sale of top 10 partners])
Hope this helps.
Hi @JbPa33
Use Calculate and ALL dax functions to remove filters from your partner.
something like :
All - removes all the filters from the partners including "top n" that you using so it will calculate the percent from the grand total as you need.
If this post helps, then please consider Accepting it as the solution to help the other members find it more quickly
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
109 | |
78 | |
71 | |
52 | |
50 |
User | Count |
---|---|
123 | |
119 | |
76 | |
64 | |
60 |