Hi, I am trying to filter by column 'First Name' and 'Last Name' when full name is searched.
So when I am typing a full name when I start with a first name or last name its fine:

BUT when I type the entire full name it comes up empty:

What I have at the moment is:
SortByColumns(Filter([@'Contacts Database'],StartsWith('First Name', TextSearchBox1.Text) || StartsWith('Last Name', TextSearchBox1.Text)||StartsWith(Company,TextSearchBox1.Text)),"Title",If(SortDescending1,Ascending,Descending))
I have tried reversing the StartsWith like:
SortByColumns(Filter([@'Contacts Database'],StartsWith(TextSearchBox1.Text, 'First Name') || StartsWith(Company,TextSearchBox1.Text)),"Title",If(SortDescending1,Ascending,Descending))
But this is not Delegable. This is on a SP List that is 4200 items so needs to be delegable.
Without having to use Power Automate to create a 'Full Name' column from first name and last name. How can I achieve a search of a full name to filter the gallery? AddColumns 'Full Name'?
Any help would be greatly appreciated!