Hi I have a the following If Statement to compare four combobox selections, this works as required but I need to nest more than 50 further If's, so need if possible to change this to a switch.
If(Q1Label.Text = "One" && Q2Label.Text = "Two" && Q3Label.Text = "Three" && Q4Label.Text = "Four",
If(Q1Label.Text = "Five" && Q2Label.Text = "Six" && Q3Label.Text = "Seven" && Q4Label.Text = "Eight",
Navigate(Feedback,ScreenTransition.None),Notify("Not all the answers are correct, please try again",NotificationType.Error)))
Is this possible?
Any advice welcomed.