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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

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
Memorable Member
Memorable Member

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
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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