Hi @Anonymous ,
I will answer your questions one by one.
First, yes you could use the SharePoint list which stores employee names and job titles. Only need to connect with this SP list as a data source.
For your second question, if you would like to retrieve all Project Managers in your organization, like populate into a combo box, you could set the Items property of the Combo box to:
Filter(Office365Users.SearchUserV2().value,DisplayName in Filter(YourSPlist, 'Job Title' = "Project Manager").EmployeeName)
For the last question, you could modifty above formula a bit, user your department as a search condition:
1\ In OnVisible of the Main Screen, create a variable:
Set(myDepartment,Office365Users.MyProfileV2().department)
2\ Modify above formula:
Filter(Office365Users.SearchUserV2({searchTerm:myDepartment}).value,DisplayName in Filter(YourSPlist, 'Job Title' = "Project Manager").EmployeeName)
Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.