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'?