Still trying to get comfortable in Integromat and struggle with what modules to use for this…
I have data that is basically this:
[
{
"location": "A",
"hours": 4,
"wages": 40
},
{
"location": "A",
"hours": 1,
"wages": 10
},
{
"location": "B",
"hours": 2,
"wages": 20
},
{
"location": "B",
"hours": 3,
"wages": 30
}
]
How can I get the sum of hours
and the sum of wages
grouped by location
in integromat so that I can add a row for each location in a Google Sheet?