I have a text search box on my powerapp that has the following formula to filter based on a Product
Filter('SharePoint_list',txtSearchbox.Text in Product)
I also have a column on the SharePoint_list for Title, and I would like the txtSearchbox.Text to also filter based on the persons Title, so if I have 'Chris' who owns the product 'Cloud Security' then entering "chris" or "cloud security" in the textbox finds the same record.#
I thought I could Google this and figure it out but the approach others take is different to my current setup, and I would like to know if this is possible with my scenario.
Solved! Go to Solution.
Hi @Anonymous ,
Try this
Filter(
'SharePoint_list',
txtSearchbox.Text in Product ||
txtSearchbox.Text in Title
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Hi @Anonymous ,
Try this
Filter(
'SharePoint_list',
txtSearchbox.Text in Product ||
txtSearchbox.Text in Title
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps
Thanks @WarrenBelz that was the solution 🙂 I stumbled on it amongst the queries that were designed for multi-textbox searches.
User | Count |
---|---|
122 | |
87 | |
86 | |
75 | |
67 |
User | Count |
---|---|
214 | |
180 | |
139 | |
96 | |
83 |