Jan 05, 2024 01:10 AM
Hello,
I have a cell with a date picking like "20240204 12:00" and I would like to format the date to "Feb 4th".
I don't find how to reformat in this particular format.
Thank you for your help !
Solved! Go to Solution.
Jan 05, 2024 05:48 AM
Hello @JeremiBen
Create a new Formula field.
Then add this formula to the formula editor.
DATETIME_FORMAT({date}, "MMM DD")
{date} is a date field in your table.
There are lot's of other ways you can use the formulas but just need to follow the syntax and give right input.
Check these official documentation from Airtable.
Jan 05, 2024 05:48 AM
Hello @JeremiBen
Create a new Formula field.
Then add this formula to the formula editor.
DATETIME_FORMAT({date}, "MMM DD")
{date} is a date field in your table.
There are lot's of other ways you can use the formulas but just need to follow the syntax and give right input.
Check these official documentation from Airtable.
Jan 05, 2024 08:33 AM
Perfect, thank you ! I thougt I read it somewhere but couldn't find it.
Thank you !