Hi All
I have an app in which the submission works in which adds the record to a SharePoint List.
The SharePoint List has a field which is a multi line text but the form is a combo-box that connects to that multi-line text.
The combo-box allows multiple selections.
A question that came up is that when multiple items are selected and submitted, even though successful only adds the last selected item in combo-box to the field in the SharePoint List. My hunch is that regardless if I allow multi-select in that combo-box it won't work like how I'm expecting, unless I do some concatenation logic of looping through the combo-box and use that as a helper interface for users to submit to another field like example below.
1) Combo-box 1 = user picks A, B, C - post to SharePoint field Combo-box 1 (still posts C as 1 record)
2) Combined Text = does concatenated logic of "A,B,C" which then posts to SharePoint field Combined Text.
Is there another way to go about this that anyone can recommend? Still going to be a pain to report this since having to parse those strings later down the road, vs. just submitting 1 record with 1 input.
Thanks