A Union combines two datasets based on one or more common columns. To configure a union, you must specify the following:
Select the datasets and specify the column matches to create a successful union. All datasets should contain matching or compatible columns so the data aligns correctly in the combined result.
If data types do not match, the result column is converted to text. Numeric formats such as percentages and currencies are converted to automatic numeric.

The two inputs have different column names for email addresses and postal codes.

You decide to use the result names of Email Address and PostalCode, so you remap the second dataset accordingly.
Use the filter option that focuses your column selection. Select All Columns, Mismatched Columns, or Enabled Columns.
| Union Type | Results |
|---|---|
| Unique Rows (UNION) |
Rows from all inputs and removes duplicates when all column values match. |
| All Rows (UNION ALL) |
Rows from all inputs and keeps duplicates. Use when repeated rows are expected. |

In this example, the rows that appear in both inputs appear only once in the result.

In this example, the duplicate rows appear twice in the result because they exist in both inputs.