Hi,
I’m facing a problem that I can’t navigate my form to the correct screen based on the pre-populate selection from a gallery.
Basic background: The form will pre-populate the language in the language drop-down selected from the Sharepoint page. There are multiple screens pointing to different language. When the user selected a language in the sharepoint page (i.e French), the form will open and should navigate to the correct French screen.
Right now the language drop-down is working good and changed to French, but the form is still displaying the default form - English. I have to click French again and the form will navigate to the French screen.
I used the following formulas:
language drop-down :
If( languageDataCardValue.selected.value = “English”, Navigate(English, Screentransaction.cover), languageDataCardValue.selected.value = “French”, Navigate(French, Screentransaction.cover))
default:
if( !(param=“”),param=‘language’,parent.default)
Any help will be much appreciated!