Hello,
Could you please provide your guidance? I'm attempting to retrieve the name of an individual whose job title is "director: security services" from Office 365.
Here's what I have so far:
OnStart app formula:
ClearCollect(
DirectorsCollection,
Office365Users.SearchUser({searchTerm: "JobTitle: ""director: security services""", maximumResults: 1})
)
Textbox default formula:
If(
CountRows(DirectorsCollection) > 0,
First(DirectorsCollection).displayName,
"No matching director found."
) , it return "No matching director found."