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

Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more

Reply
JimSales81
Frequent Visitor

How to Split and combine 2 rows into 1 row with comma

Hello,


I have a Dimension table with accounts and affiliations.  The problem is i have multiple affiliations per account so when i link it to my customer table i can't filter easily from it.  

 

What i have:

AccountAffiliation
123McDonalds
123BK
345McDonalds
345

KFC

777None
828Panera

 

What i want to create with Power Query

 

AccountAffiliation
123McDonalds, BK
345

McDonalds, KFC

777None
828Panera

 

Then filter by Affiliation.  If i select McDonalds I'll get accounts 123 and 345,

if filter by

BK-Account 123

KFC-Account 345

Panera- Account 828

None- Account 777 

 

Any help would be great.

1 ACCEPTED SOLUTION
mlsx4
Memorable Member
Memorable Member

HI @JimSales81 

 

In Power Query you can combine by doing this:

Table.Group(#"Tipo cambiado", {"Account"}, {{"Affil", each Text.Combine([Affiliation],", "), type nullable text}})

 To filter, I would try with Text filter (https://appsource.microsoft.com/en-us/product/power-bi-visuals/WA104381309)

View solution in original post

1 REPLY 1
mlsx4
Memorable Member
Memorable Member

HI @JimSales81 

 

In Power Query you can combine by doing this:

Table.Group(#"Tipo cambiado", {"Account"}, {{"Affil", each Text.Combine([Affiliation],", "), type nullable text}})

 To filter, I would try with Text filter (https://appsource.microsoft.com/en-us/product/power-bi-visuals/WA104381309)

Helpful resources

Announcements
PBIApril_Carousel

Power BI Monthly Update - April 2025

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

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

April2025 Carousel

Fabric Community Update - April 2025

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