Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
I have ID column the formate of it is Text, and ID column has many repetead ID's, I wan to cleare a new column with only distinct ID's.
Thanks in Advance
Solved! Go to Solution.
You have to get a new table
New table = distinct(table[Column])
You can join your table as dimension
Hi @Anonymous ,
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You need to create a new table instead of new measure or column. Click new table on modeling tab.
Unique ID = Distinct('sheet1'(IDcolumn))
@Anonymous ,
Create new column with below DAX:
Distinct ID = CALCULATE(DISTINCT(table[IDcolumn]))
Don't forget to give thumbs up 👍 and accept this as a solution if it helped you.
Thanks for your rpl but I am not getting distinct values instead I am getting same values as it was there in ID column.
@Anonymous ,
So, create a new table and use DISTINCT('Table'[IDcolumn]).
Don't forget to give thumbs up 👍 and accept this as a solution if it helped you.
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 22 | |
| 21 | |
| 19 |
| User | Count |
|---|---|
| 44 | |
| 32 | |
| 18 | |
| 17 | |
| 17 |