Hi @Anonymous
The following expression will give you comma seperated values of the choices returned from the MS Form selections
replace(replace(replace(dynamiccontentfieldinform,'["',''),'"]',''),'","',',')
In order to get an array
you can then use the split function to get array from above expression
split(outputofaboveexpression, ',')
this will give you an array of the values selected in MS Form
Regards,
Reza Dorrani
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly