Forum Discussion
TOPN without Duplicate in Power BI
Hi Team,
Below my data but when select TOPN 5 its display duplicate also but I need only TOP 5 values
Current its display 7 bars but i need only 5 bars in chart(I need only top 5 Employees mean A,C,B,D,F)
| Name | No |
| A | 10 |
| B | 8 |
| C | 9 |
| D | 7 |
| E | 7 |
| F | 7 |
| G | 7 |
| H | 5 |
| I | 4 |
wrong out my like(its display 7 bars i need only 5 bars)
Expected output:
I need only top 5 Employees mean A,C,B,D,F
Hi, Anonymous
According to your description, you want to show just 5 bars in the chart. I think you can add an index column in power query editor, you can follow my steps:
- Open power query editor, select the [NO] Column, and sort Descending, like this:
- Add an index column:
- Change the filter of this visual, like this:
And you can get what you want, like this:
You can download my test pbix file here
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
2 Replies
- amitchandak
Super User
Anonymous , Assumed No as measure.
rank = rankx(ALL(Table[Name]),[No],,desc,dense) + rand()/100
CALCULATE([No], TOPN(5, ALL(Table[Name]), [rank]), values(Table[Name]))
As the values are same it will give 5 but can not assure which 5 for same value
- v-robertq-msft
Community Support
Hi, Anonymous
According to your description, you want to show just 5 bars in the chart. I think you can add an index column in power query editor, you can follow my steps:
- Open power query editor, select the [NO] Column, and sort Descending, like this:
- Add an index column:
- Change the filter of this visual, like this:
And you can get what you want, like this:
You can download my test pbix file here
If this result is not what you want, you can post some sample data(without sensitive data) and your expected result.
How to Get Your Question Answered Quickly
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.