I have a SharePoint List with a 'Person' column. When a person enters a new record they get an auto-complete/suggestion which is great. However, I want to filter the autocomplete suggestions to only show students.
I have done this in PowerApps on a separate application using Vertical Gallery and O365 Users, but ideally, I'd like to use the combo box that comes standard. With the Vertical Gallery I used:
Filter(
Office365Users.SearchUser({ searchTerm: EmployeeTxt.Text, top: 500}),
Department="Our School", StartsWith(JobTitle,"Student"))
)
How can I do the same with the combo box and ideally without the Office365 Users Data Connector?