
Hi All,
I have a visible condition set in my Power App edit form datacard, to show/hide a specific data card to enter a text value whenever the selection drop down (multiple selection) consists of "Others" as one of the items which are selected.
This is the syntax - If("Others" in DataCardValue3.Selected.Value, true, false)
The issue I'm facing is that, if I select any other item after I select "Others", the data card to enter a text value becomes invisible, and I am required to deselect "Others" and select it again from the list.
Please advise if there is any change required in the syntax.
Regards,
Vivek
hey @vivekajith
can u try this:
If(CountRows(Filter(DataCardValue3.SelectedItems, Value = "Others")) > 0, true, false)
Let me know if my answer helped solving your issue.
If it did please accept as solution and give it a thumbs up so we can help others in the community.
Greetings