Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
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.
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], "," )
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.
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.
@v-yalanwu-msft , your measure somehow works perfectly in my model. Great thanks for that!
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], "," )
@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.
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
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
87 | |
85 | |
82 | |
66 | |
49 |
User | Count |
---|---|
137 | |
112 | |
101 | |
66 | |
64 |