List.Combine
List.Combine(lists as list) as list
Takes a list of lists, lists
, and merges them into a single new list.
Combine the two simple lists {1, 2} and {3, 4}.
Usage
List.Combine({{1, 2}, {3, 4}})
Output
{
1,
2,
3,
4
}
Combine the two lists, {1, 2} and {3, {4, 5}}, one of which contains a nested list.
Usage
List.Combine({{1, 2}, {3, {4, 5}}})
Output
{
1,
2,
3,
{4, 5}
}