DATETIME_PARSE
is for turning a string of text into a date object.
You want DATETIME_FORMAT
which will turn a date object into readable text.
DATETIME_FORMAT({Date}, 'D-M-YYYY')
The DATESTR
function will also turn a date object into readable text, but it will always be in YYYY-MM-DD
format.
DATESTR({Date})
All these functions are documented in the formula field reference.
DATETIME_PARSE
is for turning a string of text into a date object.
You want DATETIME_FORMAT
which will turn a date object into readable text.
DATETIME_FORMAT({Date}, 'D-M-YYYY')
The DATESTR
function will also turn a date object into readable text, but it will always be in YYYY-MM-DD
format.
DATESTR({Date})
All these functions are documented in the formula field reference.
Sorry I should’ve specified, I would like the formula to return a date object, not a string object.
The {Date} field already is a date object. However, the way the date is stored internally is different from how it is displayed. Internally the date object is stored as the long string that you see in your formula.
Because Airtable knows the {Date} field is a date, Airtable can display it in a human readable format in the {Date} column.
However, because your formula can also return an empty string ""
, Airtable doesn’t know how to format the results of the formula, and just shows the date as it is stored internally.
Another option is to simplify the IF
statement so that it does not return an empty string:
IF(FIND("Event",Name)>=1,Date)
I suggest that you try the DATETIME_FORMAT() function instead. Try this:
IF(
FIND(“Event”,Event),
DATETIME_FORMAT(Date,‘DD-MM-YYYY’),
BLANK()
)
I’m curious: Is the field Date displaying values in the format you gave an example of, i.e. “2020-02-25T00:00:00.000Z”? If so, do you need the time? If you don’t, make sure that the “Include a time field” option is toggled OFF (the default, I think) in the Customize Field dialog.

Make sense?
William