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

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

Reply
SRobbo1990
Frequent Visitor

Concatenatex with summarize

Hi All,

 

I'm currently trying to concatenate a list of suppliers (supplier table) by an Trip ID (itinerary item table)  (as below);

So that it would show Trip Id 10000175 with the full list of suppliers concatenated

SRobbo1990_0-1683190383536.png

 

I've tried to use the following command;

 

CALCULATE ( 
    CONCATENATEX(
        SUMMARIZE('Itinerary Item', Supplier[Supplier Name]),
        Supplier[Supplier Name],
        ", ",
        [Supplier Name], ASC
    )
    )
 
Unfortunately this measure just throws back a full list of all the suppliers in the supplier table.
 
Any advice?
 
Thanks
2 REPLIES 2
ERD
Community Champion
Community Champion

@SRobbo1990 , I don't know how your data model looks like, but you can try to use the same table:

ERD_0-1683195807730.png

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.

Check out my latest demo report in the data story gallery.

Stand with Ukraine!


Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/

Thank you!

Mahesh0016
Super User
Super User

@SRobbo1990 

Mahesh0016_0-1683194513158.png

CONCATENATE =
VAR Tables =
SELECTCOLUMNS ( F, "Comments", F[Comments] )
RETURN
CONCATENATEX ( Tables, [Comments], "," )

@SRobbo1990 If this post helps, then please consider Accept it as the solution and give Kudo to help the other members find it more quickly.  

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.