Hi Experts,
I have an app which allows the users to search the sharepoint list for all records. I've added a dropdown (Choices) list so that the user can search based on either just the choice that has been selected from the dropdown or via the choice in the dropdown plus additional criteria entered in a textinput. My current gallery Items code is:
Filter(Installations,
StartsWith(JobNumber, SharePointSearch_5.Text) ||
StartsWith(CustomerSite, SharePointSearch_5.Text) ||
StartsWith(ID, SharePointSearch_5.Text)
)
I wrongly assumed that I could just add another row with the below, can you advise where i've gone wrong please?
StartsWith(Installations, Installers.Value = Dropdown1.Selected.Value)
Thanks in advance!