नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
List.Difference(
list1 as list,
list2 as list,
optional equationCriteria as any
) as list
About
Returns the items in list list1 that do not appear in list list2. Duplicate values are supported. An optional equation criteria value, equationCriteria, can be specified to control equality testing.
Example 1
Find the items in list {1, 2, 3, 4, 5} that do not appear in {4, 5, 3}.
Usage
List.Difference({1, 2, 3, 4, 5}, {4, 5, 3})
Output
{1, 2}
Example 2
Find the items in the list {1, 2} that do not appear in {1, 2, 3}.
Usage
List.Difference({1, 2}, {1, 2, 3})
Output
{}