Forum Discussion
Anonymous
4 years agoNot applicable
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 w...
- 4 years ago
Hi Anonymous ,
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.
davehus
4 years agoMemorable Member
Hi Anonymous ,
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.
- Anonymous4 years agoNot applicable
Hi davehus,
Thank you so much this solved my problem 😁. - Anonymous4 years agoNot applicable
Hi davehus,
Thank you so much this solved my problem .