Majid
August 23, 2024, 3:45pm
1
I want to insert an array on a text aggregator.
But the text aggregator module convert array to a simple text without correct formatting of an array.
//Output of iterator [89]
"xxx":"yyy",
"Immersion_en_langue": [
"English"
],
"xxx":"yyy",
//Input of textaggregator [97]
"xxx":"yyy",
"lang": English
"xxx":"yyy",
Thanks,
The problem is Text aggregator create invalid formatting of array and broks my json output.
Replace your array variable:
With this (paste into the same spot):
["{{join(1.array; """,""")}}"]
Then, replace 1.array with your array variable.
Hope this helps! Let me know if there are any further questions or issues.
ā @samliew
P.S.: Did you know, the concepts of about 70% of questions asked on this forum are already covered in the Make Academy . Investing some effort into it will save you lots of time and frustration using Make later!
3 Likes
Majid
August 23, 2024, 6:58pm
3
Thank you @samliew , you are the best
2 Likes