I have a 2000 item and quickly growing list in SharePoint. Currently I am limiting the return by date with a filter to current school year. Once it is pulled in I use the below to filter by name via a text input box.
Search(
LocalBehavior,
NameSearch.Text,
"StudentFirst",
"StudentLast"
)
I have been asked to allow for historical searches. Ideally this would be completed by filtering the SharePoint list in the same way the Search() does to not need to return the 2000+ records. Is there a way to combine the power of Search and Filter?