Hello PowerApps Team,
Can I display the selected choices from a combo box to a label or textinput?
The values of my combo box comes from a sharepoint list:
I just wanted to get the selected choices be shown on a different box ( maybe a label or text input)
Is that possible?
Thank You,
KH
Solved! Go to Solution.
Hi @kharina
You can concatenate the items in a combo box by setting the text property of a label text input control to the following formula:
Concat(ComboBox3.SelectedItems, ThisRecord.Title & " ")
Hi @kharina
You can concatenate the items in a combo box by setting the text property of a label text input control to the following formula:
Concat(ComboBox3.SelectedItems, ThisRecord.Title & " ")