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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
javi0unavailabl
Resolver II
Resolver II

How can I concatenate the result of VALUES([Column]) in a single text comma separated.

How can I concatenate the result of VALUES([Column]) in a single text comma separated?

 

Thanks

 

 

2 ACCEPTED SOLUTIONS
Greg_Deckler
Community Champion
Community Champion

Use CONCATENATEX



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

Ok. Yesterday, I was using CONCATENATEX badly I think.

Syntax is

CONCATENATEX(<table>, <expression>, [delimiter]) 

I was using the entire table in <table> and VALUES([column]) in <expression> and it doesn't work.

 

Now, I tried using  VALUES([column]) in <table> and the [column] itself in expression and it works:

Measure = CONCATENATEX(VALUES(Table[column]);Table[column];", ")

 

Thanks for putting me on the way.

 

Regards

 

 

View solution in original post

5 REPLIES 5
Greg_Deckler
Community Champion
Community Champion

Use CONCATENATEX



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Ok. Yesterday, I was using CONCATENATEX badly I think.

Syntax is

CONCATENATEX(<table>, <expression>, [delimiter]) 

I was using the entire table in <table> and VALUES([column]) in <expression> and it doesn't work.

 

Now, I tried using  VALUES([column]) in <table> and the [column] itself in expression and it works:

Measure = CONCATENATEX(VALUES(Table[column]);Table[column];", ")

 

Thanks for putting me on the way.

 

Regards

 

 

Cool, glad you got there!



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

@Greg_Deckler@javi0unavailabl I've also used 

Measure = CONCATENATEX(Table,Table[column],", ")

But getting the same result as above. 

Anonymous
Not applicable

Hi @Greg_Deckler @javi0unavailabl Is there a way to do this for all values in a column. If I have column values [1,2,2,3,3], I should get 1,2,2,3,3 as the result. When I use the formula in the solution above, I get 1,2,3 as the result.
Thanks in Advance.

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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 Kudoed Authors