Forum Discussion
Anonymous
5 years agoNot applicable
Select topn value without duplicate
Hi floks, Here I facing an difficulties, that want to select TOP 20 rows from the table without duplicate of the same values. I have tried these DAX to achive but it returns dupliacte rows. DAX Qu...
- 5 years ago
Hi Anonymous ,
We create a sample, that Total has two rows same value.
Then we can create a calculate table using the following formula.
Table 2 = TOPN ( 20, SUMMARIZE ( 'factQuotes', 'factQuotes'[Total], "name", CALCULATE ( MAX ( 'factQuotes'[name] ) ) ), 'factQuotes'[Total], ASC )If it doesn’t meet your requirement, could you please show the exact expected result based on the table that you have shared?
Best regards,
Community Support Team _ zhenbw
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
BTW, pbix as attached.
SonalPowerBI
2 years agoNew Member
This solution is not working for me. When I create new table same like above, I not getting fields which I require. Is there any other solution. how to resolve tie when showing TOP 5 as I am getting more than TOP N values