Hi,
So I have a canvas app with 7 screens, I would like if get the app to:
If a selected filed (Named: Incident Type) as a selected value of Stand Down for the app to navigate to screen 5 an if the if its anything else to navigate to screen3.
Below is the formula I have, which has no errors in it but does not perform as expected, if the field has the correct value it still only navigates to screen3 instead of 5
If(varFormMode="view" And DataCardValue26.Selected.Value="Stand Down",Navigate(scrForm5,ScreenTransition.None)) Or If(varFormMode="view",Navigate(scrForm3,ScreenTransition.None),SubmitForm(Form2))
The If(varFormMode="view",Navigate(scrForm3,ScreenTransition.None),SubmitForm(Form2)) is the one i had to start with which works fine
but than added
If(varFormMode="view" And DataCardValue26.Selected.Value="Stand Down",Navigate(scrForm5,ScreenTransition.None)) Or
as I need an or statement.
Thanks for any help in advance