Forum Discussion
Union tables in one query
Hello martinkitty
Table.Combine is for sure the right function to use, and I don't know why it should not append tables within your query.
What I can see in your code however, is that you may reference the wrong step. Try to change your last step as follows
Result = Table.Combine({#"Changed Type", refreshed})
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
- Anonymous6 years agoNot applicable
hi martinkitty
if your problem is that indicated from Jimmy801 , then should try, to complete its advice, changing the expression
in this way:
Result = Table.Combine({#"Changed Type", #"Changed Type1"})But if you want to exactly simulate UNION SQL (I just see this sintax for first time)
as explainde here
"The UNION operator selects only distinct values by default."
you should use table.distinc (before and/or after the table.combine)