Hello Make Community!
Hoping you can help with this one.
I would like to get the (1449226.07) value field from the following output:
“ReportDate”: “13 August 2024”,
“UpdatedDateUTC”: “2024-08-13T14:41:36.931Z”,
“Fields”: ,
“Rows”: [
{
“RowType”: “Header”,
“Cells”: [
{
“Value”: “Date”
},
{
“Value”: “Description”
},
{
“Value”: “Reference”
},
{
“Value”: “Reconciled”
},
{
“Value”: “Source”
},
{
“Value”: “Amount USD”
},
{
“Value”: “Balance USD”
}
]
},
{
“RowType”: “Section”,
“Title”: “”,
“Rows”: [
{
“RowType”: “Row”,
“Cells”: [
{
“Value”: “2024-08-13T00:00:00”
},
{
“Value”: “Opening Balance”
},
{
“Value”: “”
},
{
“Value”: “”
},
{
“Value”: “”
},
{
“Value”: “”
},
{
“Value”: “1449226.07”
}
]
},
{
“RowType”: “Row”,
“Cells”: [
{
“Value”: “”
},
{
“Value”: “Closing Balance”
},
{
“Value”: “”
},
{
“Value”: “”
},
{
“Value”: “”
},
{
“Value”: “”
},
{
“Value”: “1449226.07”
}
]
}
]
}
],
“IMTLENGTH”: 1,
“IMTINDEX”: 1
}
]
But I do not know how to map to that specific value with all the multiple value outputs I’m getting.
I’ve tried text aggregator, JSON parser, Iterator and Array aggregator. But nothing seems to be working.
Bundle 1:
+Rows
+2
+Rows
+Cells
+2 (Closing Balance)
+7 (1449226.07)
Also I am worried that the value may not always be in the exact same place. Would be even better if I can always have it map to the closing balance value.
Does anyone have any suggestions please?