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
John255
New Member

Adding Column from another query with value type per row

Hi

 

I have these two querys resulting in these tables

 

TableA

ID

Name

1

john

2dave
3jane
4steve

 

TableB

IDValueNameValue
1age20
1gendermale
1marriedyes
2age22
2gendermale
2marriedno
3age30
3genderfemale
3marriedyes
4age33
4gendermale
4marriedno


I want to add some of the ValueName values from TableB as columns in TableA to get this

 

ID

Name

agegender
1

john

20male
2dave22male
3jane30female
4steve33male

 

I'm still very much on the learning curve here and any help will be very much appriciated.

 

Thank you

 

 

 

1 ACCEPTED SOLUTION
m_dekorte
Super User
Super User

Hi @John255,

 

You can use the Merge Query option on the Ribbon, setting the ID as key to both tables, this will return a table. When we transform that table into a record, we can expand a selection of its fields to new columns.

 

To illustrate

let
    Source = Table.NestedJoin(TableA, {"ID"}, TableB, {"ID"}, "TableB", JoinKind.LeftOuter),
    ReplaceValue = Table.TransformColumns( Source, {{ "TableB", each Record.FromList( _[Value], _[ValueName] ) }} ),
    ExpandRecordFields = Table.ExpandRecordColumn(ReplaceValue, "TableB", {"age", "gender"}, {"age", "gender"})
in
    ExpandRecordFields

 

with this result.

m_dekorte_0-1686345684379.png

 

Ps. If this helps you solve your query, please mark it as solution. Thanks!

View solution in original post

2 REPLIES 2
John255
New Member

Hi @m_dekorte 

Yes, thank you does what I need 🙂

 

m_dekorte
Super User
Super User

Hi @John255,

 

You can use the Merge Query option on the Ribbon, setting the ID as key to both tables, this will return a table. When we transform that table into a record, we can expand a selection of its fields to new columns.

 

To illustrate

let
    Source = Table.NestedJoin(TableA, {"ID"}, TableB, {"ID"}, "TableB", JoinKind.LeftOuter),
    ReplaceValue = Table.TransformColumns( Source, {{ "TableB", each Record.FromList( _[Value], _[ValueName] ) }} ),
    ExpandRecordFields = Table.ExpandRecordColumn(ReplaceValue, "TableB", {"age", "gender"}, {"age", "gender"})
in
    ExpandRecordFields

 

with this result.

m_dekorte_0-1686345684379.png

 

Ps. If this helps you solve your query, please mark it as solution. Thanks!

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.

Top Solution Authors
Top Kudoed Authors