Hi all,
I am filtering a Gallery using the following:
If(
IsBlank(txtSearch.Text),
Filter(
Jobs,
Status.Value = galleryFilter.Text
),
Filter(
Jobs,
//Status.Value = galleryFilter.Text &&
(StartsWith(Title, txtSearch.Text) ||
StartsWith(Contact, txtSearch.Text) ||
StartsWith(Address, txtSearch.Text) ||
StartsWith(AddressStreet, txtSearch.Text))
)
)
So basically the gallery has a default filter based on the value in "galleryFilter". Then if text in entered into "txtSearch" then the second filter rule kicks in. The problem I am facing though is I would like to search the SharePoint list columns with any text not just the starting text.
So for example I would like to search for "extension" in Title or "Johnson" in Contact or maybe "abc.net" in Email

I don't believe there is a "contains" but that is effectively what I am after
Thanks,
David