I want to navigate in differents screens after the user submits a Form. When a user choose the radio button A => navigate to screen A and with radio button B => navigate to screen B.
My formula looks like this :
If(SubmitForm(Form1),If(DataCardValue2.Selected.Value="A",Navigate(ScreenA),Navigate(ScreenB)))
What do I miss? Thank you.
Instead of doing this on your button OnSelect, use your form's "OnSuccess" property
OnSuccess : If(Self.LastSubmit.[Col name] = "A", Navigate(Screen1) , Navigate(Screen2) )
Good day,