Greetings,
Our company is in the process of migrating from SharePoint 2013 on-premises to SharePoint Online. In our discovery, we have 6 lists needing PowerAutomate automation attention. Each of these lists will have new entries added to them and we would like to notify our Service Desk team that there is new work to be done.
Scenario
New list entry is created for an employee new hire request.
Desired Result
Send a notification to the Service Desk with all of the information entered in the form.
Copy the original requestor with the same information.
Challenge
Multiple SharePoint columns can have multiple items selected for applications, security, and group membership.
Problem
When I create the PowerAutomate flow some of the columns come over as columns. The incoming information is formatted as this.
[ { "@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference", "Id": 1, "Value": "Intern" }, { "@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference", "Id": 2, "Value": "Large Loan Team" }, { "@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference", "Id": 5, "Value": "Accounting" }, { "@odata.type": "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedReference", "Id": 7, "Value": "RAU" }]
I want to be able to select the "Value" from each of the items above and then join them together with a comma so it reads better.
The steps I have taken so far are.
Initialize Variable - Empty Array
Set Variable - Grab the Expanded data from the SharePoint List variable
Select Variable - Select the "Value" from the array
Join Variable - Concatenate the chosen "Value"s from the above array
Send an email - Send out an email with the results.

When I put those steps into play, I get an action failed with the following information.
The variable 'myArrayVariable' of type 'Array' cannot be initialized or updated with value of type 'Object'. The variable 'myArrayVariable' only supports values of types 'Array'.
I have exhausted my resources to try and figure this out and I am reaching out to this community for guidance.
I have tried many solutions related to "PowerAutomate convert Array to String"