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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
VincHawthorne
New Member

Combine concatenatex and group by to lerge text from several lines by id

Hello eveyone !!

 

There is a problem I don't manage to solve ...

I have  in my model FAI_1, DIM_1, DIM_2 etc...  :

 

VincHawthorne_0-1743407786865.png

I need on a table, one line per client, with a list of all the product name's concatenate.

I manage to concatenate all the product name's and assign this measure to all clients, but so far I don't know how to obtain a list by client.

 

Can you help me ?

 

 

4 REPLIES 4
v-kathullac
Community Support
Community Support

Hi @VincHawthorne ,

 

As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?

 

If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.

 

Regards,

Chaithanya.

v-kathullac
Community Support
Community Support

Hi @VincHawthorne ,

 

As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?

 

If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.

 

Regards,

Chaithanya.

Hi @VincHawthorne ,

 

As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided for the issue worked? or Let us know if you need any further assistance?

 

If our response addressed, please mark it as Accept as solution and click Yes if you found it helpful.

 

Regards,

Chaithanya.

Cookistador
Super User
Super User

I made a small test with the followin example

 

Cookistador_0-1743408899356.png

Table contains the following data:

NameID

bobA
JulienA
RobertA
bobB
JulienB
bobC

 

and for table2

idProduct

ABoots
BGloves
CHeadset

The following dax measure

Test =
VAR _seluser =
    SELECTEDVALUE ( 'Table'[Name] )
RETURN
    CONCATENATEX (
        FILTER ( 'Table', 'Table'[Name] = _seluser ),
        RELATED('Table (2)'[Product]),
        UNICHAR(44)
    )
 
Returns the following table:
Cookistador_1-1743408932625.png

 

 

Is it what you need ?

 

 

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.