Hi Everyone
In my my flow I've have two list
"Employee List " List & Attandance list
I've a column in my Employee List as Emploee ID & in Attandance List as User ID
When my flow runs I need to take out all the employee ID 's which are not available in the User ID in a excel file


union(body('Select_from_Employee_list'),body('Select_from_Attendance'))
@or(not(contains(body('Select_from_Employee_list'),item())),not(contains(body('Select_from_Attendance'),item())))The problem is the output of the filter array is not the unique value from the Employee List it provides an whole list some random numbers form Employee List


These are two list I need to check ,

The output should I recieve from the filter array is this But I 'm getting differrent Values


Could anyone please help me to fix the issue