Forum Discussion
sbmeder
9 years agoHelper I
Append Data Merge Data
When we archive data in our ERP system it moves the transaction data from the current data ARTRAN to an archive table ARYTRN. My DAX abilities are limited, but I would think I would need to merge? t...
- 9 years ago
Thank you for your response. I did an import of the tables and it appended very easily.
Regards,
Scott B. Meder
cgaine
9 years agoFrequent Visitor
You can use the DAX method UNION to merge the 2 tables within PowerBI as long as the 2 tables have the same columns. Under the modeling tab select New Table, and enter the expression below.
New Table = union(ARYTRN , ARTRAN)
Hope this helps.
sbmeder
9 years agoHelper I
Will this method work with direct query?
- v-qiuyu-msft9 years agoCommunity Support
Hi sbmeder,
Based on my test, Append Queries and Append Queries as New are not supported in DirectQuery mode. Assume you connect to SQL Server database, in Get Data wizard, you can write the T-SQL to merge data.
Best Regards,
Qiuyun Yu - sbmeder9 years agoHelper I
Thank you for your response. I did an import of the tables and it appended very easily.
Regards,
Scott B. Meder