Hi,
I have a question about using the Search function in the Items property of a gallery that displays information from three data sources (Projects, Customers, Project Managers) in SharePoint Lists. I want to filter the gallery options using a Search Box Input, but I'm unsure how to achieve this with multiple data sources.
For example, the Customer list has two columns [Customer ID, Customer Name], and the Projects list has four columns [Project ID, Project Name, Customer ID, project_status]. However, the Customer ID columns are not LookUp columns. In my gallery, I am displaying Project Name, Customer Name, and PM email in text labels.
Here is the code I am currently using, which only allows me to search in one data source. Is it possible to achieve the functionality I want?
Search(Filter(Projects, project_status = "Execution"), SearchInput1.Text, project_name)
Thank you!