Hi @Anonymous ,
Could you please share a bit more about the "Technology_Areas" field and "Industry" field in your SP List data source? Are they Choice type column?
Durther, do you want the TextSearchBox1 search text to be also searched within "Description" field, "Technology_Areas" field and "Industry" field?
Currently, within PowerApps, the StartsWith function could only be used to test whether one Text type column begins with a text value, it could not be used for Complex type column, e.g. Choice, LookUp, Person column type in SP list.
As an alternative solution, please take a try with the following workaround:
Please consider modify your formula as below:
SortByColumns(
Filter(
AddColumns('Engagement Form', "IndustryValue", Industry.Value, "Technology_AreasValue", Technology_Areas.Value),
If(varMyItems, 'Created By'.DisplayName = gvCurrentUserName, true),
StartsWith(Activity_Name, TextSearchBox1.Text) || StartsWith(Description, TextSearchBox1.Text) || StartsWith(IndustryValue, TextSearchBox1.Text) || StartsWith(Technology_AreasValue, TextSearchBox1.Text)
),
"ID",
If(SortDescending1, Descending, Ascending)
)
Note: Please set the "Data row limits for Non-delegable queries" option to maximum value -- 2000 within Advanced settings of App settings of your app. I assume that the "Technology_Areas" field and "Industry" field are both Choice type column in your 'Engagement Form' data source.
Please take a try with above solution, check if the issue is solved.
Best regards,