नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Syntax
List.Combine(lists as list) as list
About
Takes a list of lists, lists, and merges them into a single new list.
Example 1
Combine the two simple lists {1, 2} and {3, 4}.
Usage
List.Combine({{1, 2}, {3, 4}})
Output
{
1,
2,
3,
4
}
Example 2
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}
}