The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I have the following table:
Code | Product | Price |
1 | Banana | 12 |
1 | Apple | 53 |
2 | Watermelon | 63 |
3 | Grape | 68 |
4 | Bread | 34 |
4 | Rice | 53 |
5 | Beans | 25 |
I need to filter just the distinct and 1 from that repets, like the following table:
Code | Product | Price |
1 | Banana | 12 |
2 | Watermelon | 63 |
3 | Grape | 68 |
4 | Bread | 34 |
5 | Beans | 25 |
Apple and Rice was gone in the last table, in other words, filtered the distinct "Codes".
I tried DISTINCT on DAX but it works for all columns, I need to focus the DISTINCT in just 1 column.
Solved! Go to Solution.
In Power Query editor, right-click the column, choose 'remove duplicates'
In Power Query editor, right-click the column, choose 'remove duplicates'
User | Count |
---|---|
70 | |
67 | |
62 | |
48 | |
28 |
User | Count |
---|---|
113 | |
78 | |
64 | |
55 | |
44 |