Hello,
Assuming the global variable gblBusinessNames is the following string:
{
"businessNames": [
"FreshFusion",
"HybridHarvest",
"DigitalGreens",
"VirtualVeggies",
"TechFarmers"
]
}
How to create a collection colBusinessNames from this?

Hello,
Assuming the global variable gblBusinessNames is the following string:
{
"businessNames": [
"FreshFusion",
"HybridHarvest",
"DigitalGreens",
"VirtualVeggies",
"TechFarmers"
]
}
How to create a collection colBusinessNames from this?
Hi @WebPortal,
This can be achieved by (1) using the ParseJSON function, (2) looping through the businessNames table and (3) defining the values as Text.
ClearCollect(
colBusinessNames,
ForAll(
Table(ParseJSON(gblBusinessNames).businessNames),
Text(Value)
)
)
If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.
Thanks!