Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi all,
I need to show the top five and the balance group to others in my report. I have used the following measure:
It worked perfectly fine until I filtered it by month. When I filtered it by month, the row for "others" disappeared, and the grand total for the month was also incorrect. Can anyone help?
Thanks!
Solved! Go to Solution.
Hi @joeywong ,
According to your description, here are my steps you can follow as a solution.
(1) We can create measures.
Measure =
var _top5 = TOPN(5,VALUES('Table'[Customer No]), CALCULATE(SUM('Table'[Amount])))
var _t2 = SELECTCOLUMNS(_top5,"No" , [Customer No])
var _cur_no= MAX('Unrelated ID'[Customer No])
var _others = EXCEPT(VALUES('Table'[Customer No]),_t2)
return
IF(_cur_no="other",CALCULATE(SUM('Table'[Amount]),FILTER('Table','Table'[Customer No] in _others)),IF(MAX('Unrelated ID'[Customer No]) in _t2 , CALCULATE(SUM('Table'[Amount]), FILTER('Table','Table'[Customer No]=_cur_no)) ,BLANK()))Measure 2 =
var _total=
SUMX( CROSSJOIN(VALUES('Table'[MM YY]),VALUES('Unrelated ID'[Customer No])),[Measure])
return
_total
(2) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @joeywong ,
According to your description, here are my steps you can follow as a solution.
(1) We can create measures.
Measure =
var _top5 = TOPN(5,VALUES('Table'[Customer No]), CALCULATE(SUM('Table'[Amount])))
var _t2 = SELECTCOLUMNS(_top5,"No" , [Customer No])
var _cur_no= MAX('Unrelated ID'[Customer No])
var _others = EXCEPT(VALUES('Table'[Customer No]),_t2)
return
IF(_cur_no="other",CALCULATE(SUM('Table'[Amount]),FILTER('Table','Table'[Customer No] in _others)),IF(MAX('Unrelated ID'[Customer No]) in _t2 , CALCULATE(SUM('Table'[Amount]), FILTER('Table','Table'[Customer No]=_cur_no)) ,BLANK()))Measure 2 =
var _total=
SUMX( CROSSJOIN(VALUES('Table'[MM YY]),VALUES('Unrelated ID'[Customer No])),[Measure])
return
_total
(2) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
FYI on another approach to get TopN/Others functionality with the Deneb visual.
TopN and Others with Deneb in Power BI - YouTube
Pat
Hi AIB,
Thank you for your help in advance.
I am quite new to power bi. I am not quite sure this is the correct way to share the PBIX file. If you can't open the file, please let me know.
I have tried writing these two measures (Top NR and Top NR2). Obviously, these two measures don't work.
Really appreciate your help. Thanks!
Joey
I do not see the measure working without the filters in the pbix you shared. Not sure I understand what you need. Can you show an example with the result based on sample data?
|
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
Hi @johnt75
Can you share a pbix?
|
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 55 | |
| 53 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 123 | |
| 108 | |
| 44 | |
| 32 | |
| 26 |