I have an app with where I need to show/hide visibility based on 2 toggles and a dropdown box value. Currently, I have not been able to accomplish this successfully. Conditions are: if both toggles are true AND if the dropdown selection is "IPhone" show else hide. I have another datacard that will need similar criteria, only the dropdown selection will be "IPhone" OR "Standard". What concept am I missing here? Please?
Dropdown Choices are:
None
Standard Phone
IPhone
If(ImmediateActionComplete_Toggle.Value= true ,If(HadEmailDataCard.Value= true ,If(!IsBlank(LookUp(HasPCTextBox.SelectedItems,Text(Value)="IPhone")), true , false ), true ))
Previous Attempt
If(ImmediateActionComplete_Toggle.Value=true, If(HadEmailDataCard.Value = true, If(HasPCTextBox.Selected.Value = "IPhone", false, true), true))