Hello Everyone,
I'm new to PowerApps, and I have a form that is linked to Sharepoint List.
After filling out the Required fields on submission of form, the value is shared in Sharepoint using the patch function.
However, there are some values in the dropdown that must be chosen, and since I like to pick many values, I'm using combobox.
I'm having trouble patching the value selected in combobox, because I need to store the selected data in Sharepoint List text format.
I want to select multiple values in comboBox , and after submitting the form, the data should be stored in the SharePoint List Country column.
1. Value of ComboBox coming from Custom List.
Distinct(Country.Title,Title)
2. Sharepoint List in which Patch mapped.
3.Country Field in List as Text
4. Patch activity
i tried Text(ComboBox1.SelectedText.Value).
THE Function Text has some invalid arguments.
Hi @Prathamesh2415,
If they can select multiple values, you can use Concat to concatenate the values with a separator:
Concat(ComboBox1.SelectedItems, Value, ", ")
If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.
Thanks!