
Hi,
I have SP List with multiple field including person type field, in my PowerApps application i try to get only the person field on collection, after that i try to display the content of my collection in dropdow, i can see that the content is here by my dropdown show nothing, this my code
step 1 : i fill my collection with one column (person type)
ClearCollect(UtilisateursList;ShowColumns(Autorisation_1;"Utilisateur"));;step 2 : i assign my collection to dropdownlist
item of dropdown:
UtilisateursList
DisplayFields of dropdown :
["DisplayName"]my drop down contient data but show a blanck DisplayName
@Khedidja1990 - could you try:
ClearCollect(
UtilisateursList;
ShowColumns(
AddColumns(
Autorisation_1;
"peoplefield_display_name";
Utilisateur.DisplayName
),
"peoplefield_display_name"
)
)
And then set the DisplayFields property of the Combo box control to:
["peoplefield_display_name"]