Retain Transform

If you choose the Retain type in a transform process, only the selected columns will be present in the result. This is important for Reduce Transform, which requires corresponding rows to have the same values in order to be grouped together. Use Retain Transform in conjunction with Reduce Transform to keep only the relevant columns and make sure the grouping can function.

The following table shows an example of the input:

Field 1Field 2Field 3Field 4Field 5
ABC105.1
ABC107.1
ABC109.1
DEF01.2
DEF03.2

The following table shows an example of the output (Selected columns: Field 1 and Field 5):

Field 1Field 5
A5.1
A7.1
A9.1
D1.2
D3.2