Hello -
I've tried different 'apply to each' scenarios without luck for the following.
I want to loop through array 1 by zone using value zone number in array 2 and create array 3.
Array 1
[
{
"Zone": "1",
"LookUpStr": "25"
},
{
"Zone": "2",
"LookUpStr": "35"
},
{
"Zone": "3",
"LookUpStr": "80"
},
{
"Zone": "4",
"LookUpStr": "45"
},
{
"Zone": "5",
"LookUpStr": "157"
}
]
Array 2
[
{
"Zone Number": 2
},
{
"Zone Number": 3
},
{
"Zone Number": 4
}
]
Array 3 created by flow
[
{
"LookUpStr": "35",
"LookUpStr": "80",
"LookUpStr": "45"
}
]
Appreciate any suggestion.
Thanks!