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
laitung1991
Frequent Visitor

transfer columns to row from 2 table

I have 2 table : table1, table 2 and i want to take columns of table1 transfer row table2 and have new table3, i have picture for example:

Capture.PNG

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

Hi @laitung1991 

 

Did you try the append queries?

let
    Source = Table.Combine({#"Table (2)", Table}),
    #"Replaced Value" = Table.ReplaceValue(Source,null,"Y/N",Replacer.ReplaceValue,{"Status"})
in
    #"Replaced Value"

0001.PNG

 

Community Support Team _ Dina Ye
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

6 REPLIES 6
v-diye-msft
Community Support
Community Support

Hi @laitung1991 

 

Did you try the append queries?

let
    Source = Table.Combine({#"Table (2)", Table}),
    #"Replaced Value" = Table.ReplaceValue(Source,null,"Y/N",Replacer.ReplaceValue,{"Status"})
in
    #"Replaced Value"

0001.PNG

 

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.

thanks for your help

Anonymous
Not applicable

2 options...

 

you can use 'Merge Queries' in Edit Queries to join the 2 data sources.

Or

create a relationship between the 2 tables and then build a table/matrix visual using data from both tables.

i want to create new table not  build table/matrix visual, i tried Merge Queries but when join not enough record  for example when when join table 2 from table 1 have one record not two

thank you for your help

Anonymous
Not applicable

So, Edit Queries is the way forward.

 

Are you able to share a dashboard? or some screen shots?

i can't share file dashboard because my company don' want 

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