Apr 23, 2021 12:09 PM
Hi community,
I made an automation and the date is not the same/ Format in the table European. Should I make something special to avoid this ? Or did I miss something ?
Thank you !
Solved! Go to Solution.
Apr 23, 2021 02:12 PM
Hi @NEPCO - Airtable holds the date in the standard ISO format (I assume) and what you are seeing the in the table is just a “front-end” format of this underlying date. The automation doesn’t use the table format so if you want a specific format in your email, make another field using a formula to make a “date as string” field:
with formula:
DATETIME_FORMAT(Date, 'DD/MM/YYYY')
Use this string date in the email and you’ll get the format you want:
Apr 23, 2021 02:12 PM
Hi @NEPCO - Airtable holds the date in the standard ISO format (I assume) and what you are seeing the in the table is just a “front-end” format of this underlying date. The automation doesn’t use the table format so if you want a specific format in your email, make another field using a formula to make a “date as string” field:
with formula:
DATETIME_FORMAT(Date, 'DD/MM/YYYY')
Use this string date in the email and you’ll get the format you want:
Apr 23, 2021 02:35 PM
Thank you soooooo much. :slightly_smiling_face: