Hi ,
Based on the multiple selection done in the drop down menu, I need to hide and show the other field in the power apps.
Eg:
Drop Down Menu has Option A ,B , C and D . The other field needs to be displayed if B is one of the selections .
I used Visible
If(DataCardValue2.Selected.Value = "B", true, false) but in this when B and C are selected , it does not work. But when C and B are selected , meaning when B is at the end then condition works. How to solve this?