Hello All,
I have a created a microsoft forms which triggers a flow to save the data on SharePoint excel and then sends the same details via email.
Flow gets triggered when new entry is made in forms. I am reading forms data using the following formula
@{first(triggerBody()?['value'])?['resourceData']['responseId']} The forms and flow works fine but it updates data incorrectly where my form is displaying Multiple checkbox option.
For multiple checkbox section, flow is reading the data from Forms as
"rc07d5055e2eb4cc8936262f0e3ba9aeb": "[\"Option 1\",\"Option 2\",\"Option 5\"]"
and then putting the values in the excel sheet as ["Option 1","Option 2","Option 5"]. How can I remove the [" when flow writes data to excel.
I want the final output as Option 1, Option 3, Option 5. There is also a case condition in flow which doesnt get triggered because of these values like [".
Thanks.