Hello Experts !!
I have a gallery where i am getting information from a sharepoint list. I want to filter the gallery by a textinput box where the user can search by the submitter email or by status. The status column is a choice column where the options are New, In Progress and completed. I use the formula below but it gives me a delegation problem. Is there a way i can write this formula where there is no delegation issue?
Filter('MySharepointList', StartsWith(Title, TextInput1.Text) Or StartsWith(Status.Value,TextInput1.Text)
Thank you for your help.