Hi, I have this collection, NewSubordinates that is filtered according to the Manager's Name.

I need to check who's the approver(s) for each of the subordinates inside the collection. To check the subordinates' approver(s), it is in another list, the Employee list.

Name, Manager's Name, Approver Level 1 and Approver Level 1 are people columns.
I also need to check whether the subordinates have 1 or more approvers to create the approval for the specific subordinate.
//App.OnStart
With(
{
ApproverName:
Filter(
Employee,
'Approver Level 1' And 'Approver Level 2'
),
EmpName:
Filter(
NewSubordinates, Requester.DisplayName)
},
First(ForAll(
ApproverName As aCol,
Collect(
Newcollect,
Filter(
EmpName,
Requester.DisplayName = aCol.'Approver Level 1' && aCol.'Approver Level 2'
)
)
)
));
I tried this formula but it doesn't work. How to get the who's the approver(s) for the subordinates?
Thank you.