Hi Everyone,
I'm having difficulty to redirecting user's in to their specific screen based on another SP List user category followed by Deep Link from Flow. Such as
Flow: Sending email to users with Deep Link to the specific screen to approve their specific request
My FlowMy apps start Start Screen Event:
If(
!IsBlank(
LookUp(
'ExitCL02-Approvers',
User().Email = Name.Email
)
),
ApproversLanding,
!IsBlank(Param("ItemID")) && LookUp(
'Exit Clearance V02',
ID = Value(Param("ItemID"))
).Supervisor.Email = User().Email,
SupervisorApprove,
!IsBlank(Param("ItemID")) && LookUp(
'Exit Clearance V02',
ID = Value(Param("ItemID"))
).Adm2ApproverEmail = User().Email,
AdminApprove,
!IsBlank(Param("ItemID")) && LookUp(
'Exit Clearance V02',
ID = Value(Param("ItemID"))
).Fin2ApproverEmail = User().Email,
FinanceApprove,
RequestorLanding
)
My App On Start Event:
If(
!IsBlank(Param("ItemID")),
Set(
VarItemX,
LookUp(
'Exit Clearance V02',
ID = Value(Param("ItemID"))
)
)
Now I would like to
1. redirect the users to "ApproversLanding" who are in the ApproverList
2. redirect the users to "their specific screen" who's lookup ID user email matched with logged-in user email
3. Otherwise redirect rest to RequestorLanding
My formula on Start Screen event ins conflicting the If condition. Looking for your expert advice and support to accomplish this.
Regards
Leo