- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Measure - how to CONCATENATEX DITINCT value in a measure
Hi, I would like to ask is there any way I could concatenate all distinct value for a measure.
In this example, "Product" is a MEASURE.
I hope I can get a result "A, B, C", using sth like
=Calculate(Concatenatex(Table,Distinct(Table[Product]),", ")
Thanks for any idea!
ID | Product(measure) |
1 | A |
2 | A |
3 | B |
4 | C |
5 | C |
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @ngct1112
I would try this.
Create a new table within a variable and add your measure as a column in that table. Here is documentation on ADDCOLUMN: ADDCOLUMNS function (DAX) - DAX | Microsoft Docs
Return that table variable in a concatenatex statement and return the new column you created.
MeasureName =
VAR TableVar =
ADDCOLUMN ( Table, "NewColumnName", [Measure] )
RETURN
CONCATENATEX ( TableVar, [NewColumnName], "," )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi, @ngct1112 ;
You could try:
MeasureName =
VAR _new =
DISTINCT(SELECTCOLUMNS( 'Table', "New", [Measure] ))
RETURN
CONCATENATEX ( _new, [New], "," )
he final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi, @ngct1112 ;
You could try:
MeasureName =
VAR _new =
DISTINCT(SELECTCOLUMNS( 'Table', "New", [Measure] ))
RETURN
CONCATENATEX ( _new, [New], "," )
he final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@v-yalanwu-msft , your measure somehow works perfectly in my model. Great thanks for that!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @ngct1112
I would try this.
Create a new table within a variable and add your measure as a column in that table. Here is documentation on ADDCOLUMN: ADDCOLUMNS function (DAX) - DAX | Microsoft Docs
Return that table variable in a concatenatex statement and return the new column you created.
MeasureName =
VAR TableVar =
ADDCOLUMN ( Table, "NewColumnName", [Measure] )
RETURN
CONCATENATEX ( TableVar, [NewColumnName], "," )
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

@thedatahiker , With your provided solution, I am still getting "A,A,B,C,C". May I ask how I could only concate the distinct values?"A,B,C"
Great thanks again.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @ngct1112 ,
To get distinct values you can update your code as below:-
MeasureName =
VAR TableVar =
SELECTCOLUMNS ( 'Table_product', "NewColumnName", [Product(measure)] )
RETURN
CONCATENATEX ( DISTINCT ( TableVar ), [NewColumnName], "," )
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
08-14-2024 05:39 AM | |||
03-21-2024 07:23 PM | |||
06-18-2024 06:16 AM | |||
Anonymous
| 06-28-2024 01:39 AM | ||
Anonymous
| 06-27-2024 04:26 AM |
User | Count |
---|---|
140 | |
110 | |
81 | |
60 | |
46 |