I've created a text field that needs to be active or viewable when the selection of a combo box matches a partial string.
For example, the field becomes visible when the selection in the combo box contains '3rd'. I've looked for functions similar to SQL's LIKE or CONTAINS but those don't appear to be options. I also tried to use a function like this on the Visible property but it doesn't work
If(Find('3rd),'combo box'.SelectedItems), true, false)
What would be the best to show the text field or the group (text field and label) when the selected value in the combo box contains '3rd'?
Solved! Go to Solution.
In the Visible property of the control you want to hide:
"3rd" in ComboBox1.Selected.Product
Replace Product with the Column that contains "3rd"
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
In the Visible property of the control you want to hide:
"3rd" in ComboBox1.Selected.Product
Replace Product with the Column that contains "3rd"
------------
If you like this post, give a Thumbs up. Where it solved your request, Mark it as a Solution to enable other users find it.
Ok. That was super simple. Thanks!
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
198 | |
172 | |
62 | |
33 | |
32 |
User | Count |
---|---|
338 | |
271 | |
105 | |
71 | |
58 |