Hey Everyone,
Im using a combobox and the office 365 connector to populate it so you can search for a username. The goal is/was to use that display name and then use the collect feature to input that users email address into a sharepoint list. Its not working, when I submit it comes through as blank, and even trying to set a variable, its mentioning the Username1.Mail as a table and not a text field.
What am I doing wrong here:
Office365Users.SearchUser({searchTerm:ProjectControllerCombo_1.SearchText}).DisplayName
Thats the one to search for the username.
For the onselect for the next page to declare a global variable to get the email, I have this:
Set(ProjControllerEmail,First(Office365Users.SearchUser({searchTerm:ProjectControllerCombo_1.SearchText}).Mail));