Hi - looking for a simple way to search on a split the "employee's" name by first few characters of the last name
Column is a Dataverse single line of text column
Currently search code is
StartsWith(
'Employee Name',
Trim(tbEmpNameFilter.Text)
) ||
EndsWith(
'Employee Name',
Trim(tbEmpNameFilter.Text)
I tried
StartsWith('Employee Name',Trim(tbEmpNameFilter.Text)
) ||
StartsWith(Last(Split('Employee Name'," ")).Value,Trim(tbEmpNameFilter.Text))
but I get the delegation error
Client wants to see a result for the first few characters of the last name ...
ex: Ted returns
Christina Tedesco
Thank you