Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers!
Enter the sweepstakes now!Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.
Hi,
I will like to return the total bottom 10 values ,only the total. i already used Ranx function but it returned all bottom 10 with no totals, anyone here to help please?
e.g Bottom numbers are 1,2,3,4,5, I want to return 15 only
Solved! Go to Solution.
Hi @Yinka_212
You can use TOPN and then SUMX them. Create a measure like below
Measure = SUMX(TOPN(10,'Table','Table'[Column1],ASC),'Table'[Column1])
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Hi @Yinka_212
You can use TOPN and then SUMX them. Create a measure like below
Measure = SUMX(TOPN(10,'Table','Table'[Column1],ASC),'Table'[Column1])
Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.
Check out the April 2025 Power BI update to learn about new features.
Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.