Hi All
I am just after some advise. I got 2 SP lists with similar columns and I need to make a collection that would show only items from list1 if they dont exist in list2.
Any ideas?
Thanks

Hi All
I am just after some advise. I got 2 SP lists with similar columns and I need to make a collection that would show only items from list1 if they dont exist in list2.
Any ideas?
Thanks
Consider the following:
Collect(yourCollection, Filter(list1, !(columnFromList1 in list2.columnInList2)))
I hope this is helpful for you.