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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
timazarj
Helper II
Helper II

Retrieve All related data from another table as a list

 

Hello,

In the model there 2 tables one for customer information and the other one for the product they bought:

Customer:

IDName 
1Brian 
2Tammy 

 

Product

IDProduct
1A
1B
1C
1D
2A
2F

 

I tried to add a new column in the customer table listing all the products: 

IDNameProduct List
1BrianA,B,C,D
2TammyA,F

 

 

Thanks,

1 ACCEPTED SOLUTION

Hi @timazarj ,

 

Please try CONCATENATEX function:

Measure = CONCATENATEX('Table (2)','Table (2)'[Product],",")

Vlianlmsft_0-1644386674238.pngVlianlmsft_1-1644386687563.png

 

 

Best Regards,
Liang
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

3 REPLIES 3
timazarj
Helper II
Helper II

Thank you, 

Do you have any idea how can I define it as a measure using DAX.

Hi @timazarj ,

 

Please try CONCATENATEX function:

Measure = CONCATENATEX('Table (2)','Table (2)'[Product],",")

Vlianlmsft_0-1644386674238.pngVlianlmsft_1-1644386687563.png

 

 

Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

freginier
Super User
Super User

Create these queries in power query

 

Product Table

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUXJUitWBsJzgLGc4ywXMMoKrA7HclGJjAQ==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [ID = _t, Product = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"Product", type text}})
in
    #"Changed Type"

Customer Table

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUXIqykzMU4rViVYyAvJCEnNzK5ViYwE=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [ID = _t, Name = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID", Int64.Type}, {"Name", type text}}),
    #"Merged Queries" = Table.NestedJoin(#"Changed Type", {"ID"}, Product, {"ID"}, "Product", JoinKind.LeftOuter),
    #"Expanded Product" = Table.ExpandTableColumn(#"Merged Queries", "Product", {"Product"}, {"Product.1"}),
    #"Renamed Columns" = Table.RenameColumns(#"Expanded Product",{{"Product.1", "Product"}}),
    #"Grouped Rows" = Table.Group(#"Renamed Columns", {"ID", "Name"}, {{"Product", each Text.Combine([Product],","), type nullable text}})
in
    #"Grouped Rows"

 

You should get this 

freginier_0-1643923224229.png

 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors