Hi I have created a number of hidden fields using If statement:
Goes like this: visible
If(DataCardValue35.Selected.Value="Other”,true,false)
which works beautiful, however I have a field which has a number of selections required, such as Other, EMS) I have tried different ways to try and get both these choices in, however they do not work. I dont get errors, but when selecting it does not show the hidden box when selected. Here are some examples of what i have done.
If(DataCardValue35.Selected.Value="Other",true,false) && (DataCardValue35.Selected.Value="SWMS")
also done
If(DataCardValue39.Selected.Value="Other; EMS",true,false)
I know what I have tried is not quite right, however I not sure if it best to use the If statement or if I should use a variable on the other field. Would anyone be able to point me in the right direction as it would be much appreciated. I have only just started using Powerapps, so fairly new.