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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
ngct1112
Post Patron
Post Patron

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!

IDProduct(measure)
1A
2A
3B
4C
5C
2 ACCEPTED SOLUTIONS
thedatahiker
Microsoft Employee
Microsoft Employee

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], "," )

 

 

View solution in original post

v-yalanwu-msft
Community Support
Community Support

Hi, @ngct1112 ;

You could try:

MeasureName = 
VAR _new = 
DISTINCT(SELECTCOLUMNS( 'Table', "New", [Measure] ))
RETURN
CONCATENATEX ( _new, [New], "," )

he final output is shown below:

vyalanwumsft_0-1628233488404.png

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.

View solution in original post

5 REPLIES 5
v-yalanwu-msft
Community Support
Community Support

Hi, @ngct1112 ;

You could try:

MeasureName = 
VAR _new = 
DISTINCT(SELECTCOLUMNS( 'Table', "New", [Measure] ))
RETURN
CONCATENATEX ( _new, [New], "," )

he final output is shown below:

vyalanwumsft_0-1628233488404.png

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!

thedatahiker
Microsoft Employee
Microsoft Employee

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.

ngct1112_0-1628145966489.png

 

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], "," )

 

Samarth_18_0-1628148439818.png

 

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

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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