append-lists
Description
append-lists
adaptor combines values from two lists into one.
The list
output includes values from the first list
, followed by values from the second list
. Use the append-to-list
adaptor or the prepend-to-list
adaptor to add a single value to an existing list.
Final list can be connected to the sort-list
adaptor to change the ordering of values in the list.
Inputs
first list
Type: list
Required: Yes
The list to which the second will be appended.
second list
Type: list
Required: Yes
The list that will be appended to the first list.
Outputs
list
Type: list
A list containing values from both lists.
Examples
Example 1: Default behaviour.
Inputs:
first list
:
Jan
Feb
Mar
second list
:
Apr
May
Jun
Outputs:
new list
:
Jan
Feb
Mar
Apr
May
Jun
-> Combined values from two lists.
Use cases
Appending lists will help users to consolidate information to identify available and/or missing values
Appending lists may be necessary for consolidation or merging of historical records/ datasets.
Appending lists allows for adjustment of included values without modifying the original dataset.
Last updated