Forum Discussion
Anexar tablas
- 6 years ago
Hi CAJMM1 ,
If the five tables have similar data construction, we suggest to combine them into one table so that it will be more easy to calculate result in report. But if they different data table, it will be better to import them separately and create relationship between each other。
Best regards,
Hi CAJMM1 ,
If the five tables have similar data construction, we suggest to combine them into one table so that it will be more easy to calculate result in report. But if they different data table, it will be better to import them separately and create relationship between each other。
Best regards,
Five tables have the same estructure, so I will follow your suggest, I will combine them.
Thank you very much.
- v-lid-msft6 years agoCommunity Support
Hi CAJMM1 ,
We can use the "append as new query" in the Power Query Editor, or just write a query using Table.Combine function as following:
let Source1 = ..... , Source2 = ..... , Source3 = ..... , Source4 = ..... , Source5 = ..... , NewTable = Table.Combine({Source1,Source2,Source3,Source4,Source5}) in New Table
Best regards,