Hello All
I am displaying a SharePoint list in PowerApps. I have created two search boxes to filter the results.
The StartsWith function works great for the Title, however the filter results for Row_x0020_Number doesnt work for us.
If we filter "3" the results also show "31", "32" and so on.. If we search "3" we only want to display 3 not the others.
SortByColumns(Filter('tree import', StartsWith(Title, TextSearchBox1.Text)&& StartsWith(Row_x0020_Number, TextSearchBox1_1.Text)), "Title", If(SortDescending1, Descending, Ascending))
Any help would be appreciated