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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Hayleysea
Resolver II
Resolver II

Merge text values from different rows into one row based on value in another column

Hi there, how can I achieve the below data transformation? The reason is I have two separate table with the same data structure that I need to compare using a matrix visual. At the moment the Type value from the first table splits the type into 3 different rows and then the type value from the second table is repeated each time so it looks like output table below. 

From:

NameType
BobA
BobB
BobC

 

To:

NameType
Bob

A

B

C

Bob

A

B

C

Bob

A

B

C

 

Current output:

NameTable 1Table 2
BobAA
  B
  C
 BA
  B
  C
 CA
  B
  C

 

Desired output:

NameTable 1Table 2
Bob

A

B

C

A

B

C

1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

Hi @Hayleysea,

I'd like to suggest you write a measure formula to use a current category to look up correspond records and merge them into one and use it on matrix. It will show the expected result as you wanted.

measure =
CALCULATE (
    CONCATENATEX ( VALUES ( Table1[Type] ), [Type], " " ),
    FILTER ( ALLSELECTED ( Table1 ), [Name] IN VALUES ( Table2[Name] ) )
)

Regards,
Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

2 REPLIES 2
v-shex-msft
Community Support
Community Support

Hi @Hayleysea,

I'd like to suggest you write a measure formula to use a current category to look up correspond records and merge them into one and use it on matrix. It will show the expected result as you wanted.

measure =
CALCULATE (
    CONCATENATEX ( VALUES ( Table1[Type] ), [Type], " " ),
    FILTER ( ALLSELECTED ( Table1 ), [Name] IN VALUES ( Table2[Name] ) )
)

Regards,
Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
amitchandak
Super User
Super User

@Hayleysea , If you have common dimension Table  Name joined with Table A and Table B, Then this should work.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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