Hi,
I have a drop down menu with 5 different options. I also have a 3 different sub options fields to be displayed depending the value selected.
For the 3 different sub options, I used these formulas below. The user can select multiple values from the drop down menu and I want to show the sub options based on the value selected. Theoretically all 3 sub options should show up if the specific list items are selected. The issue I am running into is that only one sub option is showing up even though I selected all the different options.
If(DataCardValue4.Selected.Value = "Apple", true, false)
If(DataCardValue4.Selected.Value = "Orange", true, false)
If(DataCardValue4.Selected.Value = "Cherry", true, false)