Forum Discussion
sbenzaquen
Helper I
5 years agoappend/calculate two different tables
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: ...
- 5 years ago
Try like this example
a new table
Distinct(union (
Summarize(Table1,[Supplier name], [Supplier Country]),
Summarize(Table2,[Supplier name], [Supplier Country])
))
amitchandak
Super User
5 years agoTry like this example
a new table
Distinct(union (
Summarize(Table1,[Supplier name], [Supplier Country]),
Summarize(Table2,[Supplier name], [Supplier Country])
))