List.Combine
結合多個清單以傳回一個清單。
Syntax
List.Combine(
lists as list
) as list
Remarks
接受一連串清單 lists,將它們合併成一個新的清單。
Examples
Example #1
合併兩個簡單清單 {1, 2} 和 {3, 4}。
List.Combine({{1, 2}, {3, 4}})
Result:
{
1,
2,
3,
4
}
Example #2
合併兩個簡單清單 {1, 2} 和 {3, {4, 5}},其中一個包含巢狀清單。
List.Combine({{1, 2}, {3, {4, 5}}})
Result:
{
1,
2,
3,
{4, 5}
}
Category
List.Transformation functions