I’m trying to send responses from a Tally form to a Notion database using Make. I want each field in the form to correctly populate its corresponding property in Notion, especially “Select” and “Multi-select” fields.
Steps taken so far
Steps taken so far
I set up a webhook between Tally and Make, and the data is received correctly.
I successfully mapped standard fields like Name, Email, and Date.
For “Select” and “Multi-select” fields, I pre-filled the options in Notion.
I tried using:
data.fields.value
data.fields.valueArray[0]
{{map(data.fields.valueArray; item → { “name”: item })}}
However, Notion still shows empty fields or displays raw option IDs instead of their names. Thanks in advance for your help
Hi, I’m replying a bit late — I just saw your message
Here is the screenshot of the Tally webhook bundle, showing the question with a single select field about skin type, with 5 possible options (Grasse, Mixte, Sensible, Sèche, Normal).
Only one answer can be selected.
In the value field, the series of characters ends with “5142”, which matches the ID for the “Sensitive” option in Collection 3. So the response is accurate.
In the second screenshot, I show how I’ve set up each possible answer as a Select property in the Notion CRM.
This field in Notion is set to “Select” type (not multi-select).
In the third screenshot, you’ll see that I’ve stopped mapping this specific field for now – I’m only mapping the text-based fields, so I can still receive the rest of the data from the form while I try to solve the issue with the select field.
I’ve tried mapping this field in different ways but without success.
I also searched online (e.g., “how to map select and multi-select fields with Make and Notion”) but couldn’t find a working solution.
So as you can see, I’m not able to map either the select or multi-select responses
Let me know if you need any other details. Thank you in advance!