Transform

Union

Stacks two tables on top of each other into one longer table. Columns are matched by name, so the two tables do not need identical layouts; a column present in only one of them is kept, with blanks for the rows that came from the other table.

Inputs

InputAcceptsRequired
Table1TableYes
Table2TableYes

Outputs

OutputProduces
ResultTable

Example

You import Q1_Transactions and Q2_Transactions as separate tables, each with Date, Account, and Amount. Connect both to a Union node and the result is a single half-year transaction list, Q1 rows first, which appears as its own tab. Follow with a GroupBy on Account to see six-month totals.

Tips

Related nodes