Forum Discussion
How to Merge Two Tables (Vertical Merge)
- 6 years ago
Hey matthewtian777 ,
I actually don't understand what you mean by "vertically merge"
If you want to use the equivalent of "Append Queries" -> You could use the UNION-TableFunction.
If you need to join the tables in DAX you could use
- NATURALLEFTOUTERJOIN
- NATURALINNERJOIN
- ADDCOLUMNS
If this post was helpful may I ask you to mark it as solution and give it some kudos?
Have a nice day!
BR,
Josef
Hey matthewtian777 ,
I actually don't understand what you mean by "vertically merge"
If you want to use the equivalent of "Append Queries" -> You could use the UNION-TableFunction.
If you need to join the tables in DAX you could use
- NATURALLEFTOUTERJOIN
- NATURALINNERJOIN
- ADDCOLUMNS
If this post was helpful may I ask you to mark it as solution and give it some kudos?
Have a nice day!
BR,
Josef
JosefPrakljacic Thank you, Josef! The UNION function is exactly what I want.