Help

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

Last modified time [SOLVED]

cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Katherine_Duh
10 - Mercury
10 - Mercury
Status: Launched

UPDATE 2: last modified time is now available to everyone! You can learn more about it here.

UPDATE: The last modified time beta is now closed as we get ready for a general release. Thanks to all of the testers who made this beta a success.

ORIGINAL POST:

Hi folks! Weโ€™re very excited to announce that weโ€™re beta testing a last modified time field type, as well as a LAST_MODIFIED_TIME formula function. Many thanks to the users whoโ€™ve posted specific, detailed feedback about their needs and use cases with regard to this feature, like @Arlo_Haskell, @Deborah_Buck, and @Jordan_Friedman. We read everything that is posted here in the forums and your feedback is incredibly valuable for us when weโ€™re planning the product roadmap and developing new features!

If youโ€™re a Pro plan user and youโ€™re interested in testing out the last modified time field type and/or the LAST_MODIFIED_TIME formula functionโ€”and giving us your feedbackโ€”please sign up using this form. (Note: this is a different form from our standard beta signup form, and it requires you to fill out a couple of additional questions.)

As you are all aware, this is a highly anticipated feature, and there are many users who would like to get beta access. However, for technical reasons and to ensure an optimal user experience, rollout for this beta will be conducted in small, limited batches. (In practical terms, that means that it might take a while for you to get access.)

219 Comments
dbruehlmeier
4 - Data Explorer
4 - Data Explorer

+1. This is a blocking issue for the future use of Airtable for us

Tim_Dietrich
6 - Interface Innovator
6 - Interface Innovator

Kerry,

Actually, we do have a way to get a recordโ€™s โ€œdate createdโ€ value now. You can create a Formula Field and set itโ€™s formula to: CREATED_TIME()

I hope that helps.

Tim

Martha_Creedon
6 - Interface Innovator
6 - Interface Innovator

OK if thereโ€™s anybody out there. Answer is TIMEZONE. My case:
DATETIME_FORMAT(SET_TIMEZONE(CREATED_TIME(), โ€˜America/New_Yorkโ€™), โ€˜M/DD/YYYY h:mm Aโ€™)
Results in:
1/17/2017 11:30 AM

Mark_Wong
4 - Data Explorer
4 - Data Explorer

Any timeline on providing modified time? it would be very helpful and a key ability for the task-tracking table I want to create. (and would get me parity with my current google spreadsheet macro).

Floyd_Patrick_P
4 - Data Explorer
4 - Data Explorer

+1 for this too. Additionally a โ€œmodified byโ€ feature addition as well.

Kerry_Kriger
6 - Interface Innovator
6 - Interface Innovator

Thanks Tim,
How do I make a proper formula that includes my timezone preference?
This does not work:
CREATED_TIME() SET_TIMEZONE(datetime, โ€˜America/Los_Angelesโ€™)
Kerry

Tim_Dietrich
6 - Interface Innovator
6 - Interface Innovator

You would want to wrap the two functions, like this:

SET_TIMEZONE(CREATED_TIME(), โ€˜America/Los_Angelesโ€™)

However, that doesnโ€™t seem to be returning the correct time when I test it.

Kerry_Kriger
6 - Interface Innovator
6 - Interface Innovator

Hi Tim,
I tested
SET_TIMEZONE(CREATED_TIME(), โ€˜America/Los_Angelesโ€™)
and indeed it does not set the timezone properly.
What do you suggest?
Thanks, Kerry

Katherine_Duh
10 - Mercury
10 - Mercury

Hi Kerry,

In order to get your formula to work, youโ€™ll need to include the DATETIME_FORMAT function in addition to the SET_TIMEZONE function, so, e.g.:

DATETIME_FORMAT(SET_TIMEZONE(CREATED_TIME(), โ€˜America/Los_Angelesโ€™), โ€˜M/D/YYYY h:mm aโ€™)

You can specify the output using the format specifiers listed in this support article. Hope this helps!

Kerry_Kriger
6 - Interface Innovator
6 - Interface Innovator

That worked, thank you!!!
Kerry