How can I set the default selected items of a combobox to display the results stored in the sharepoint list ?
Context: In my form control there is a field called Characters, which is a text column in my sharepoint list, however I use a combox on top of the textinput control to fill the data.
I set the default property of my characters datacardvalue( text input control) to
Concat('Char_CB_2'.SelectedItems, 'Characteristics' & Char(10))
If I have selected three options in my combo box all these three will be stored in the sharepoint and separated by a new line character (char(10))
Example: If I select Red, Green in my combobox then it will saved as RED/n Green
So, later If I open this record in the Edit Mode Form, then I would like to display these values in my combo box separately.
Now it displays the value together. Example: Red Green