Forum Discussion
Anonymous
6 years agoNot applicable
undefined
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
- 6 years ago
You have to get a new table
New table = distinct(table[Column])
You can join your table as dimension
Tahreem24
6 years agoSuper User
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.
- Anonymous6 years agoNot applicable
Thanks for your rpl but I am not getting distinct values instead I am getting same values as it was there in ID column.
- Tahreem246 years agoSuper User
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.