Hi,
I use n8n to do some automated data collection that i want to store in the Aritable.
I get the current date in the n8n with the code
var data = DateTime.now().toFormat('dd/M/yyyy');
return {
json: {Date: data}
}
the output is
[
{
"Date":
"27/6/2023"
}
]
The format seems to be valid, due to the airtable date documentation
As the next step, i add some extra data and append it to the table, i get the error
Cannot parse date value "27/6/2023" for field Date
That is super confusing because the format is exactly as in the documentation:
{name: 'european', format: 'D/M/YYYY'}