Hi Makers,
Here’s an overview of this section of the scenario.
- 39: The array aggregator outputs an array of collections (see output below).
- 46: The iterator breaks those down.
- 34: The text aggregator creates a single, comma-separated string.
[
{
"array": [
{
"Date": "2024-07-07",
"webViewLink": "https://docs.google.com/document/d/XXX/edit?usp=drivesdk"
},
{
"Date": "2024-07-01",
"webViewLink": "https://docs.google.com/document/d/XXX/edit?usp=drivesdk"
},
{
"Date": "2024-07-03",
"webViewLink": "https://docs.google.com/document/d/XXX/edit?usp=drivesdk"
},
{
"Date": "2024-07-01",
"webViewLink": "https://docs.google.com/document/d/XXX/edit?usp=drivesdk"
},
{
"Date": "2024-06-30",
"webViewLink":" https://docs.google.com/document/d/XXX/edit?usp=drivesdk"
}
],
"__IMTAGGLENGTH__": 5
}
]
I have been trying to insert into the iterator the following inline formula to sort them, but because they’re collections this doesn’t work.
{{sort(39.array; 39.array[].Date)}}
Your input on how to sort this complex array by date would be appreciated.