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
Hi,
would like to calculate the SUM of TOP N Material boughts with some conditions.
see below the sample data
anyone who can support?
Thanks!
Solved! Go to Solution.
Hi , @jalaomar
According to your description, you want to "SUM of TOP N based on conditions".
Here are the steps you can refer to :
(1)This is my test data:
(2)We can create a measure like this:
Measure = var _top = TOPN(5, FILTER('Table','Table'[Document]= BLANK() && 'Table'[Quantity bought]<1000),'Table'[Quantity bought],DESC)
return
SUMX(_top,[Quantity bought])
Then we can meet your need:
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi , @jalaomar
According to your description, you want to "SUM of TOP N based on conditions".
Here are the steps you can refer to :
(1)This is my test data:
(2)We can create a measure like this:
Measure = var _top = TOPN(5, FILTER('Table','Table'[Document]= BLANK() && 'Table'[Quantity bought]<1000),'Table'[Quantity bought],DESC)
return
SUMX(_top,[Quantity bought])
Then we can meet your need:
Thank you for your time and sharing, and thank you for your support and understanding of PowerBI!
Best Regards,
Aniya Zhang
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 | |
81 | |
70 | |
49 |
User | Count |
---|---|
143 | |
124 | |
107 | |
60 | |
55 |