Forum Discussion
peterson191
5 years agoRegular Visitor
How to union intermediate tables in Power Query?
Hi Power BI Gurus, How to union intermediate tables in Power Query? My sample is as below: I am crawling data from some web pages. For each page, there will be a table. But I do not want to d...
- 5 years ago
Hello peterson191
you need a list when feeding Table.Combine, not every table as seperate parameter. So this step has to look like this
CombinedTable = Table.Combine({type_changed_1_1,type_changed_1_2,type_changed_1_3,type_changed_1_4,type_changed_1_5,type_changed_1_6,type_changed_1_7,type_changed_1_8,type_changed_1_9,type_changed_1_10,type_changed_1_11,type_changed_1_12})
If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too
Have fun
Jimmy
Jimmy801
5 years agoCommunity Champion
Hello peterson191
you need a list when feeding Table.Combine, not every table as seperate parameter. So this step has to look like this
CombinedTable = Table.Combine({type_changed_1_1,type_changed_1_2,type_changed_1_3,type_changed_1_4,type_changed_1_5,type_changed_1_6,type_changed_1_7,type_changed_1_8,type_changed_1_9,type_changed_1_10,type_changed_1_11,type_changed_1_12})
If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too
Have fun
Jimmy
peterson191
5 years agoRegular Visitor
Jimmy801 Thank you. You really make my day!!!