
Announcements
Hi All,
I have made Combobox as People picker and it is multiselect user.
Now on button click, I want to get all selected users with a semicolon and set in a variable. This variable I will use to display on a label control.
Note - I want to display all selected user on a label with semicolon.
Thank you so much !!
Hi @SKY05
Button OnSelect Property: Set the OnSelect property of your button to capture the selected users and store them in the variable.
Set(
SelectedUsers,
Concat(
ComboBoxUsers.SelectedItems,
DisplayName & "; "
)
)
Display the variable on a label: After setting the variable, you can display the selected users on a label using the variable. Assuming the label is named "Label1", you can set its Text property to the variable "SelectedUsers":
SelectedUsers
Thanks!
If my response has been helpful in resolving your issue, I kindly request that you consider clicking "Accept as solution" and "giving it a thumbs up" as a token of appreciation.