
Announcements
I have a form that currently sends the field "WorkDays" to a sharepoint list (The person selects multiple days in the survey)
the current output looks like this:
["Monday","Tuesday","Wednesday"] or ["Sunday","Friday","Saturday"]
I'd like to keep this all in the same field for the list with the following output:
M, Tu, W or Su, F, Sa
Thanks
Hi @Anonymous ,
Please refer to screenshot below to create the flow:
The schema in the Parse JSON as below:
{
"type": "array",
"items": {
"type": "string"
}
}
Best regards,
Alice
Community Support Team _ Alice Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.