The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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])
))