I'm building a list of people in an array, comparing it to an existing list of people in a SharePoint list, then adding any missing people to the SharePoint list and updating the list record for any people that are not in the new array.
So far, I have run through each item in the array and used Get Items with a query filter to find matches. Anything array items without a matching list record were added to the list. Easy.
However, I'm having a hard time finding the people in the SharePoinst list that are not in the array. I could easily do nested loops, but that's not very efficient. I've tried using Filter Array, but I must not have the proper syntax.
When I run that, the filtered array always comes back empty. Why is that?