Hi All,
I'm having issue with the "Switch" feature. I want that if I select one of the options from the list, navigate to the specific screen I need. But it doesn't work. If I using simple dropdown list then yes but when I am using list from "Form" (connected to Sharepoint list) then not. Maybe I'm miss something. The formula is:
OnSelect:
Switch(DataCardValue4_1.Selected.Value;
"Line 1";Navigate(Line1);
"Line 2";Navigate(Line2and3);
"Line 3";Navigate(Line2and3);
"Line 4";Navigate(Line4)
)
The same effect with "IF"
If(DataCardValue4_1.Selected.Value="Line 1";Navigate(Line1);
If(DataCardValue4_1.Selected.Value="Line 2";Navigate(Line2and3);
If(DataCardValue4_1.Selected.Value="Line 3";Navigate(Line2and3);
If(DataCardValue4_1.Selected.Value="Line 4";Navigate(Line4)
))))
When I am not using data from the Form both of them working