Hello All,
I have a dropdown menu which is linked up with Office365 users to show their names in the dropdown menu.
However the only information i am able to retrieve is .DisplayName with the code below:
ComboBoxAfzender.Selected.DisplayName
Is there a way for me to get Email adresses or any other info about my users?
only DisplayName is shown in suggestions.
How i fill the combobox with the userdata:
If(
!IsBlank(ComboBoxOntvangerINK.SearchText);'Office365-gebruikers'.SearchUser({searchTerm:ComboBoxOntvangerINK.SearchText})
)