I connected a combo box to a column in my SP list that is of the type "Person or Group".
I get the items in as I can see them selectable but there are no values displayed.
The records are there, you can select, but the list is blank as what I have in DisplayFields and SearchFields property is clearly incorrect.
I tried the same as for standard people picker
["DisplayName","ComplianceAssetId","Email","Picture","Claims"]
but that doesn't work, probably because this is a table in a table situation.
Can somebody suggest a correct syntax? The data are there which I proven by selecting one of the blank lines and saving the selection into a variable, I just can't see it.
Solved! Go to Solution.
Hi @Ifrit ,
For this requirement 2 scenario - in your Combobox people filed have multiple value selected then you want to display only 1st value or contacted value.
Please see the demo already used both scenarios
Code for Only Display the First selected Item.
AddColumns(TestAkshay,"UserDIsplayName",First(Candidate.DisplayName).DisplayName)
Code for Concatenated Selected Person
AddColumns(TestAkshay,"UserDIsplayName",Concat(Candidate,DisplayName,";"))
.
Reference - Demo
Thanks,
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Hi @Ifrit ,
For this requirement 2 scenario - in your Combobox people filed have multiple value selected then you want to display only 1st value or contacted value.
Please see the demo already used both scenarios
Code for Only Display the First selected Item.
AddColumns(TestAkshay,"UserDIsplayName",First(Candidate.DisplayName).DisplayName)
Code for Concatenated Selected Person
AddColumns(TestAkshay,"UserDIsplayName",Concat(Candidate,DisplayName,";"))
.
Reference - Demo
Thanks,
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Works like a charm 😄 thanks!
That's what I was missing. I came up with a solution using Distinct, but it wasn't perfect
Thank you
Power Apps User Groups are coming! Make sure you’re among the first to know when user groups go live for public preview.
Did you miss the call?? Check out the Power Apps Community Call here!
User | Count |
---|---|
255 | |
205 | |
76 | |
37 | |
31 |
User | Count |
---|---|
331 | |
214 | |
121 | |
71 | |
55 |