Hello everyone,
I’m encountering an issue with integrating Make (Integromat) and Airtable, and I’m hoping someone can help me resolve it. I’m trying to update a number field in Airtable with values parsed from a JSON file. However, I keep getting the error: Field "Valor Bruto" cannot accept the provided value
.
Here’s what I’ve tried so far:
-
Basic Parsing and Formatting:
{{parseNumber(6.valor_bruto)}}
-
Removing Commas:
{{formatNumber(parseNumber(6.valor_bruto; "."); 0; "."; ",")}}
-
Simple Multiplication to Ensure Number Type:
{{6.valor_bruto * 1}}
-
Ensured Airtable Field Type:
- Double-checked that the “Valor Bruto” field in Airtable is set to “Number”. Also tried currency. When I put text it works!
Despite these efforts, I’m still facing the same error. The JSON data I’m working with contains numeric values as strings, and I need to convert them to numbers for Airtable.
Any suggestions on what might be going wrong or how I can fix this? Has anyone encountered a similar issue and found a solution?
Thank you in advance for your help!