Help

This Product Ideas board is currently undergoing updates, but please continue to submit your ideas.

Support seconds in Date field

cancel
Showing results for 
Search instead for 
Did you mean: 
Blark
5 - Automation Enthusiast
5 - Automation Enthusiast

It would appear that the ‘Date’ field does not record seconds.

Here’s why I think this:

Screen Shot 2020-05-25 at 3.05.50 PM

Here are the formulas I’m using to expose this:
DATETIME_FORMAT({Date (no secs?)}, ‘DD-MM-YYYY h:mm:ss’)
DATETIME_FORMAT({Created Time}, ‘DD-MM-YYYY h:mm:ss’)

I hope I’m wrong about this. I need to be able to grab seconds from a ‘Date’ record.

View discussion of this in Dates and Timezones category

3 Comments
M_k
11 - Venus
11 - Venus
ScottWorld
18 - Pluto
18 - Pluto

This would be a pretty nice feature to have.

Even if Airtable didn’t visually display the seconds & milliseconds by default, it would be nice to know that date fields had that information stored within them, and that we could access that information with either:

(a) formula fields
or
(b) additional formatting choices in the date field.

It sounds like the Airtable API does allow putting seconds into date fields, but we can’t use the Airtable interface to put seconds into date fields.

Further discussion of this here:

jmcmurry
5 - Automation Enthusiast
5 - Automation Enthusiast

I was trying to do rollup fields to find the most recent of an array and there were too many form collisions at the minute level. Unfortunately creating a string output (with seconds) with this information is not helpful, because then you'd need to re-parse it to do any date math. I had to convert timestamps to unix timestamps in seconds and compare those instead like so 

DATETIME_DIFF(formTimestamp, "1970-01-01", "seconds")
Rollup of MAX(values) of that field then works fine.
Granted this limitation is not ideal for many reasons, but the workaround does work.