What is your goal?
Automation
What is the problem & what have you tried?
Hi everyone,
I’m receiving form responses from Tally via a Custom Webhook in Make.
Inside data → fields, I have multiple LINEAR_SCALE questions with the following labels:
sinn_bedeutung
sinn_identitaet
sinn_standhaftigkeit
sinn_langfrist
Each field contains a numeric value (e.g., 1–5).
I want to calculate the average of these four values inside a Tools → Set variable module.
My current expression is:
Code kopieren
(number(first(map(2.data.fields; value; label; “sinn_bedeutung”)))) +
(number(first(map(2.data.fields; value; label; “sinn_identitaet”)))) +
(number(first(map(2.data.fields; value; label; “sinn_standhaftigkeit”)))) +
(number(first(map(2.data.fields; value; label; “sinn_langfrist”)))) / 4
However, the output returns the full expression instead of the calculated numeric result.
From the webhook output I can confirm:
The labels match exactly
The values are numeric
The fields exist in the array
What is the correct way to extract and calculate the average from these labeled fields inside an array in Make?
Thanks in advance!




