Hi
I have customized SharePoint form. I have a label for people field . Its text property like
DataCardValue1.Selected.DispalyName
But it is showing only one person name . but my field is multiselected .
Please help me
Solved! Go to Solution.
Try
Concat(ThisItem.DataCardValue1.Selected, DisplayName, ", ")
or substitute DataCardValue1.Selected with the actual name of the field shown in the card. Something like
Concat(ThisItem.PendingWith, DisplayName, ", ")
Hi @ursNani ,
The point is that the Selected property only return the first item in the list of selected items. To get the list of selected items, you should use SelectedItems .
Please try
Concat(DataCardValue1.SelectedItems,DispalyName ,";")
Best Regards,
Bof
Try
Concat(ThisItem.DataCardValue1.Selected, DisplayName, ", ")
or substitute DataCardValue1.Selected with the actual name of the field shown in the card. Something like
Concat(ThisItem.PendingWith, DisplayName, ", ")
Hi @ursNani ,
The point is that the Selected property only return the first item in the list of selected items. To get the list of selected items, you should use SelectedItems .
Please try
Concat(DataCardValue1.SelectedItems,DispalyName ,";")
Best Regards,
Bof
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
175 | |
46 | |
46 | |
34 | |
33 |
User | Count |
---|---|
258 | |
87 | |
78 | |
68 | |
67 |