Hi @Big_S ,
Do you want to make the approver as "team.chua@leader.ph" if the Requestor is "team.guioguio@leader.ph" and the request amount is more than 100000?
Based on the needs that you mentioned, I think the If function could achieve your needs. I have made a test on my side, please consider modify your formula as below:
If(
Value(TotalAmount_4.Text) >= 500000,
Office365Users.UserProfile("team.chua@leader.ph").DisplayName,
Value(TotalAmount_4.Text) >= 100000,
If(
User().Email = "team.guioguio@leader.ph",
Office365Users.UserProfile("team.chua@leader.ph").DisplayName,
Office365Users.UserProfile("team.guioguio@leader.ph").DisplayName
),
Office365Users.UserProfile(Label40.Text).DisplayName
)
Please consider take a try with above solution, then check if the issue is solved.
Best regards,