Hi, basically I have a column('Answer') in a collection('QnList') that has to be uploaded onto sharepoint, but transposed into a row, with each entry under one column. In the 'Answer' collection it looks like:
Answer
1.1_false
1.2_true
1.3_true
What I managed to work out is to concatenate the column 'Answer' separated with commas into a string, then upload this onto the SP list via a form. This leaves me with one column and one row with all the 'Answer' records concatenated into a string. On the SP List it looks something like this:
col1
row 1 1.1_false,1.2_true,1.3_true,1.4_false,.....
What I need help with now is to split this string into columns while remaining on the same row, which is why I do not think Split() will work in this case. Ideally what i am hoping to get is:
col1 col2 col3 col4
row1 1.1_false 1.2_true 1.3_true 1.4_false .....
Can this be done?