Hi,
I've tried a couple of things but cant get it to work. I have a drop down, with a few options to choose from.
On the dropdown itself on the OnSelect or OnChange Property, I have tried just with 1 of the dropdowns selections first:
If("Part B" in RequestForDropdown.Selected.Value, Navigate(PartBScreen,Fade))
doesn't work, so I created a next button and on its OnSelect I set the same formula, again nothing happens.
Also tried:
If(RequestForDropdown.Selected.Value = "Part B", Navigate(PartBScreen, Fade))
Neither work when I hit the play button
Ideally what I want is for the users not to press a next button, rather as soon as a user selects from the dropdown, I want the user to be navigated to another screen, is this possible?