Hi @Anonymous ,
Could you please share a bit more about your scenario?
Do you want to combine the Search Text box with your Filter formula in your app?
I have made a test on my side, I think the nested Search function could achieve your needs. Please consider take a try with the following workaround:
Set the Items property of the Gallery to following formula:
Filter(
Search(tblEquipment, TextSearchBox1.Text, "SearchColumn1", "SearchColumn2", "SearchColumn3", ...),
If(
IsBlank(dpr_Category.SelectedText.Value), true,
IsBlank(dpr_Group.SelectedText.Value), Category = drp_Category.SelectedText.Value,
Category = drp_Category.SelectedText.Value && Group = drp_Group.SelectedText.Value
)
)
Note: The "SearchColumn1", "SearchColumn2", "SearchColumn3", ... represents the Text type columns in your SP list. Currently, the Search function is only supported to use Text type columns as Search column.
More details about Search function, please check the following article:
Search function
In addition, if you faced a Delegation warning issue with your formula, it means that you could not delegate the data process to your SP list data source, you could only process data locally within your app. In default, you could only process 500 records locally at most. You could change the limit to the maximum value -- 2000, please check the following article for more details:
https://docs.microsoft.com/en-us/powerapps/maker/canvas-apps/delegation-overview#changing-the-limit
If the amount of your SP list records is not more than 2000 (you have already changed the "Data row limits for Non-delegable queries" option to maximum value -- 2000), you could ignore this Delegarion warning issue.
If the amount of your SP list records is more than 2000, as an alternative solution, please check and see if the solution mentioned within the following thread would help in your scenario:
https://powerusers.microsoft.com/t5/General-Discussion/Pulling-in-large-ish-SQL-tables/m-p/243777#M71518
Best regards,