Skip to main content
Answer

Bug or mistake wrong date in my email

  • April 23, 2021
  • 2 replies
  • 36 views

  • Participating Frequently

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 !

Best answer by JonathanBowen

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:

2 replies

JonathanBowen
Forum|alt.badge.img+18
  • Inspiring
  • Answer
  • April 23, 2021

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:


  • Author
  • Participating Frequently
  • April 23, 2021

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:


Thank you soooooo much. :slightly_smiling_face: