Hi,
I would like to move to a suceess screen when I run a flow and when the flow doesn't run, I'd like to go to another screen (unsuccessful).
I think I've done the success part correctly but I'm not sure how I do the unsuccessful screen part.
On select I've the following:
If(PApps_BCard_Create_Contact.Run(paramFirstName,paramLastName,paramCompany,paramMobile,paramJobTitle,paramEmail,paramAddress,paramAkadTitel,TakenPhoto,Dropdown.Selected.Value);Navigate('Success Screen',ScreenTransition.Fade),true)
I changed it to this but it always jumps to the unsuccessful screen.
If(PApps_BCard_Create_Contact.Run(paramFirstName,paramLastName,paramCompany,paramMobile,paramJobTitle,paramEmail,paramAddress,paramAkadTitel,TakenPhoto,Dropdown.Selected.Value);Navigate('Success Screen',ScreenTransition.Fade),true); If(PApps_BCard_Create_Contact.Run(paramFirstName,paramLastName,paramCompany,paramMobile,paramJobTitle,paramEmail,paramAddress,paramAkadTitel,TakenPhoto,Dropdown.Selected.Value);Navigate('Success Screen_1',ScreenTransition.Fade),false)
Any ideas please? Thanks for any help.