Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not 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

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

You have to get a new table

New table = distinct(table[Column])

You can join your table as dimension

View solution in original post

6 REPLIES 6
V-lianl-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can try to create a new table:Table2 = DISTINCT('table'[id])
If necessary, you can also create a relationship for the two tables based on the ID.

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

selpaqm
Helper V
Helper V

You need to create a new table instead of new measure or column. Click new table on modeling tab.

 

Unique ID = Distinct('sheet1'(IDcolumn))

 

 

 

amitchandak
Super User
Super User

You have to get a new table

New table = distinct(table[Column])

You can join your table as dimension

Tahreem24
Super User
Super 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.

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard
Anonymous
Not 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.

 

@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.

 

 

Don't forget to give thumbs up and accept this as a solution if it helped you!!!

Please take a quick glance at newly created dashboards : Restaurant Management Dashboard , HR Analytics Report , Hotel Management Report, Sales Analysis Report , Fortune 500 Companies Analysis , Revenue Tracking Dashboard

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.