The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have two data tables that I would like to aggregate. They have different column names and orders.
Could you please let me know how would you aggregate both tables?
For instance:
I want to create an aggregated table that would have Supplier Name and Supplier country data from both tables.
Thank you in advance.
Kind regards,
Salvador
Solved! Go to Solution.
Try like this example
a new table
Distinct(union (
Summarize(Table1,[Supplier name], [Supplier Country]),
Summarize(Table2,[Supplier name], [Supplier Country])
))
Try like this example
a new table
Distinct(union (
Summarize(Table1,[Supplier name], [Supplier Country]),
Summarize(Table2,[Supplier name], [Supplier Country])
))