I have a Microsoft Form which has a multiple choice question (multiple answers allowed), in this example:
Morning
Afternoon
Evening
In my SharePoint List, I have a column which is formatted as a choice with the exact same choices. In both the Form and the List multiple-answers is allowed.
I have a Flow which is grabbing the Form fill data and creating an item in the SharePoint list. The problem is the way it gets displayed in the list. If someone checks off both Morning and Afternoon in the form for example, what appears in the list is:
["Morning","Afternoon"]
I tried formatting the column as text instead of choice, but I get the same result.
If I manually enter an item in the list and check off those two what appears is:
Morning, Afternoon
Is there anyway to work the Flow so that the result is clean like that?
Thanks in advance.