I'm customizing a SharePoint list in Power Apps and trying to redirect the form a different screen based the Status filed value. So if Status=Completed go to the completed Screen (view as it as in InfoPath) On the main screen --> On Start: If(StatusValue.Text = "Completed", Navigate(CompleteForm, ScreenTransition.None)) It does not redirect and there is no error. If I use a button with the onSelect Value: Navigate(CompleteForm, ScreenTransition.Fade) it works. What am i doing wrong?