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'?
Ok. That was super simple. Thanks!
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.