List.Combine
Returns a single list by combining multiple lists.
function (lists
as list) as list
Takes a list of lists,
lists
, and merges them into a single new list.List.Transformation functions
Combine the two simple lists {1, 2} and {3, 4}.
List.Combine({ {1, 2}, {3, 4} })
{ 1, 2, 3, 4 }
Combine the two lists, {1, 2} and {3, {4, 5} }, one of which contains a nested list.
List.Combine({ {1, 2}, {3, {4, 5} }})
{ 1, 2, 3, {4, 5} }
Last modified 4yr ago