I've tried following a number of online solutions but they either don't apply directly to this simple action or just don't work.
The input is coming from a Choice column in SharePoint. It could be any number of items from 0 to 12+. I need to get the "VALUE" shown below and convert it to a string to feed into a Child Flow.
Expected output should be "M365 Basic, Google, Cell Phone".
[
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 0,
"Value": "M365 Basic"
},
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 3,
"Value": "Google"
},
{
"@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference",
"Id": 9,
"Value": "Cell Phone"
}
]