I am trying to filter a Person column in a SharePoint List to determine who the approver will be in PowerApps based on several criteria.
Purchase App (get the information from SharePoint List Name: PurchaseTest1)
My idea is that the approver (coming from SharePoint List Name: ApproversTest1) is the list of persons that may approve the purchase request (ApproverPerson Column is a Person column)

So the idea is that if the request is below 5,000 the approver option will be only if the BusinessUnit match. Ex: If amount is 2,500 and BusinessUnit is Unit1, only Alfredo should be an option. If the amount exceed 5,000 only Alejandra Pena should be available for either Business Unit.
At this point i just have the formula for the amount:
Distinct(Filter(ApproversTest1,Limit>=Value(DataCardValue2.Text)),ApproverPerson.DisplayName)
But i am not able to include the fact that it should consider the BusinessUnit as well, I have been trying to use Contain with no success.
Any thoughts