
Announcements
Hi all,
Has anyone to reformated json from
Data:[
{
"optvalue": "BO",
"opttext": "Belleza Office"
},
{
"optvalue": "SO",
"opttext": "Simprug Office"
}]
to
{
"0": "Belleza",
"1": "Simprug Office"
}
in copilot studio formula, without using power automate ?
I have try to use FORALL, but the result is not what i need.
{"0": "Belleza"},
{"1":"Simprug"}
Here the code using FORALL
ForAll(Topic.Var1.DATA, { optvalue :optvalue})