Hi @Ravi14
Thank you for your help. I tried createArray as you suggested.
It outputs something like this.
[
[
{
"Name": "A",
"Target": "15"
},
{
"Name": "B",
"Target": "10"
}
],
[
{
"Name": "C",
"Target": "40"
}
]
]
What I am looking for though is this, where Name C is coming from one select output and Name A und B from another select ouput.
[
{
"Name": "A",
"Target": "15"
},
{
"Name": "B",
"Target": "10"
},
{
"Name": "C",
"Target": "40"
}
]