append-lists
Last updated
Last updated
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 adaptor or the adaptor to add a single value to an existing list.
Final list can be connected to the adaptor to change the ordering of values in the list.
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.
list
Type: list
A list containing values from both lists.
first list
:
Jan
Feb
Mar
second list
:
Apr
May
Jun
new list
:
Jan
Feb
Mar
Apr
May
Jun
-> Combined values from two lists.
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.