Hello,
I have built a flow take responses from MS Forms and populate a SharePoint list with them. With multi-choice questions, when they are copied over to the SharePoint list, they always have '[{"Value": }]' and I cannot find a way of getting rid of it. Here is an example:
In the above screenshot, I have used the select function to create items out of the responses to this multi-choice question. The code in the 'From' field is this:
if(empty(outputs('Get_response_details')?['body/r53416eabc6444e24bcb22c25ab0c77e4']),createArray('No response'),json(outputs('Get_response_details')?['body/r53416eabc6444e24bcb22c25ab0c77e4']))
Then I put the output of this into the corresponding field in the SharePoint list in the Create Items action:
And every time a response is given it has '[{"Value": }]" around the responses. Is there any way to get rid of that?