Combine Two Tables in Power Query Without Merge Queries

Описание к видео Combine Two Tables in Power Query Without Merge Queries

#powerquery #power_query
Steps:
1. Create/import two tables (T1, T2)
2. Use the following functions to put T1 in list format
*Table.DemoteHeaders()
*Table.ToColumns()
3. Repeat step 2 for T2 and combine using & to put both tables into one list of lists
4. Use the following functions to convert list of list back into a table:
*Table.FromColumns()
*Table.PromoteHeaders()
5. (Optional) put formula in custom function for future use

Final Formula:
=Table.PromoteHeaders(Table.FromColumns(Table.ToColumns(Table.DemoteHeaders(T1)) & Table.ToColumns(Table.DemoteHeaders(T2))))

Комментарии

Информация по комментариям в разработке