Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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:
Solved! Go to Solution.
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"
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"
thanks for your help
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
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.