Hi,
So I have an App, within that I have a gallery of items, the gallery can be filtered by the following
Text search box, radio buttons, checkboxes and a combobox. This works fine, but for the code specifically relating to the text search box I have used Startswith, is there anyway I can adapt my code so that the code uses 'Search' instead of StartsWith' as I want users to be able to type any term in rather than specifically what it starts with. I have included my existing code below.
Filter(
MaintRequests,
StartsWith(
Title,
TextBox_1.Text
) && (Status.Value = Status_Radio_1.Selected.Value || Status_Radio_1.Selected.Value = Blank())
&& ((Checkbox_Me_1.Value && Owner.Email = User().Email) || Checkbox_Me_1.Value = false && Checkbox_Other_1.Value = false) || (Checkbox_Other_1.Value && Owner.Email = Resource_ComboBox_1.Selected.Email))