I am building an app with multiple screens. When the user presses the "Next" navigate button to go to the next screen, I want that screen dependent on what they selected as an option on the first screen. Specifically, I have a drop down one of my selections for a type of valve. The options are DCVA and RPBA. If they select DCVA, I want them to go o screen 2 when they hit the "next" button. Here is the If statement I came up with but it's not working correctly.
If('Valve Type_DataCard1'=DCVA,Navigate(Screen2), If('Valve Type_DataCard1'=RPBA,Navigate(Screen3)
Thanks for the help.