Hi,
I have a gallery that is filtered from the text within text input control using the following formula.
Filter('Memberships',StartsWith(Postcode,inp_editmember_membership_search.Text)
This filter uses the "Post code" column on the SharePoint list that is providing the data. What I'd like to do is add a second text input control that will allow the user to search on the "Last Name" column. The idea is that the user can choose which criteria to search on and the gallery will filter on either box.
This is the formula I'm using but only the "Post code" box is working
Filter('Angling Memberships',StartsWith(Postcode,inp_editmember_membership_search.Text) Or StartsWith('Last Name',inp_editmember_membership_search_1.Text))
Any hints or tips gratefully received.