Forum Discussion
Rahul_SC
4 years agoHelper IV
Append multiple workbooks by column position not by headers
Hi all, I have multiple excel workbooks which I want to consolidate. The problem is column headers are different and data type can also be different in multiple workbooks. However, I know the col...
- Anonymous4 years ago
You can just Demote Headers, then combine, nice and easy.
artemus
4 years agoMicrosoft Employee
You can use Table.ToRows(table) to convert a table to a list of list of values. Next you can use either rows1 & rows2 & rows3 ... or List.Combine({rows1, rows2, rows3, ...}) to combine them into a single list. Finally use Table.FromRows(rows) to turn it back into a table.
Rahul_SC
4 years agoHelper IV
Hi, thanks for responding. But, as I am new, I think I need some visual explanation for using this formula. I am just confused how to apply this formula, in what sequence.