Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi guys,
I have 2 tables. One for invoiced orders and the other for currently orders yet to be shipped. I essentially want to merge these 2 tables as one based on the Order Reference Field as this field indicates that they went to the same Job Location.
But I am unsure how best to do this whther in DAX or power query. I essentially want a new table so I can extract the total sale amounts for both invoiced and yet to be shipped orders. Any help would be appreciated .
@cdawidow In DAX:
UNION('Table1', 'Table2')
In Power Query
Table.Combine(Table1, Table2)
User | Count |
---|---|
15 | |
9 | |
8 | |
6 | |
5 |
User | Count |
---|---|
31 | |
18 | |
15 | |
7 | |
5 |