I am working with an array and I’m wondering if there is a way to convert it to array collection using text functions.
This is the current array
"Equipment List Array": [
"Two-Way Zoom",
"75'' TV Screen with stand",
"Post-it Flip Chart",
"Laptop",
"Platinum Corporate Reception"
]
This is what I would like to have it look like.
"Equipment List": [
{
"Type": null,
"Name": "Two-Way Zoom",
"Description": null,
"Make ID": null,
"Xero ID": null,
"bigin ID": null,
"CUID": null,
"Cost": null,
"Xero Account": null
},
{
"Type": null,
"Name": "75'' TV Screen with stand",
"Description": null,
"Make ID": null,
"Xero ID": null,
"bigin ID": null,
"CUID": null,
"Cost": null,
"Xero Account": null
},
{
"Type": null,
"Name": "Post-it Flip Chart",
"Description": null,
"Make ID": null,
"Xero ID": null,
"bigin ID": null,
"CUID": null,
"Cost": null,
"Xero Account": null
},
{
"Type": null,
"Name": "Laptop",
"Description": null,
"Make ID": null,
"Xero ID": null,
"bigin ID": null,
"CUID": null,
"Cost": null,
"Xero Account": null
},
{
"Type": null,
"Name": "Platinum Corporate Reception",
"Description": null,
"Make ID": null,
"Xero ID": null,
"bigin ID": null,
"CUID": null,
"Cost": null,
"Xero Account": null
}
]
This is the current text function to create the simple array
And the blueprint if anyone wants to see it. I’m working on building out the data store to reduce the number of modules and to be able to access information on different routes that currently have a problem because of the iterators and aggregators.
blueprint-2.json (268.9 KB)