I have a Flow that looks up 2 lists and gets the 2 multi-choice fields in a Select action and I have them displaying in Arrays like this:
Select Action 1:
[
{
"Name": "Test1"
},
{
"Name": " Test2"
},
{
"Name": " Test3"
}
]
Select Action 2 (This one gets put in a ""For Each" control for some reason):
[
{
"Name": "Test4"
}
]
How can I combine these into one so that I can use it to Update item in a SharePoint list?
You can use the union function to merge these two arrays. You can also refine the data by selecting the Switch to Map mode in the Select action to select just the values:
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.