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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Abishek
Helper I
Helper I

CONCATENATEX is providing duplicated result even when using values() ,distinct() or related table()

Hi , 
Can someone help me with this issue, While concatenating data in one single colum into row wise data, duplicates are coming, is there any way to achieve this without duplicates? I have tried with Values(), Distinct(), RelatedTable() dax function but it is not working as expected, is there any way to do this ?

concate.png

 

1 ACCEPTED SOLUTION
davehus
Memorable Member
Memorable Member

Hi @Abishek ,

 

Try this 

CONCATENATEX(VALUES('# test_DRIVER_DASHBOARD'[CATEGORY]) ,'# test_DRIVER_DASHBOARD'[CATEGORY],",")
Values will read the column and return a unique set of data.
 
If this answers your question, please accept my solution.

View solution in original post

3 REPLIES 3
davehus
Memorable Member
Memorable Member

Hi @Abishek ,

 

Try this 

CONCATENATEX(VALUES('# test_DRIVER_DASHBOARD'[CATEGORY]) ,'# test_DRIVER_DASHBOARD'[CATEGORY],",")
Values will read the column and return a unique set of data.
 
If this answers your question, please accept my solution.

Hi davehus,
Thank you so much this solved my problem .

Hi davehus,
Thank you so much this solved my problem 😁.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors