Best answer

Airtable: find all records created in the last 24 hours

  • 31 July 2022
  • 3 replies
  • 125 views

Userlevel 1

Hello, It's probably a very simple problem, but I can't get any further. What do I have to enter in the trigger so that I can find the records that were created in the past 24 hours? Thank you very much!

icon

Best answer by GetUWired 1 August 2022, 15:56

View original

This post has been closed for comments. Please create a new post if you need help or have a question about this topic.

3 replies

Userlevel 7
Badge +9

Hi @KevinDax 

You can only get one record from Airtable, even if your search result contains more than 1 results.

The formula however would be similar to this

IS_AFTER(CREATED_TIME(), DATEADD(CREATED_TIME(), -24, "hours"))

 

Userlevel 7
Badge +12

Hi @KevinDax 

you will need to create a view in Airtable for all records created in the last 24 hours. Then you can follow this guide to pull back all records on the view

 

Userlevel 1

thank you, robschmidt - I didn't know that you can only retrieve one record at a time.

 

and also thanks to GetUWired - Your suggested solution worked for me. My goal was to transfer the entries from the last day (there was already a view for this) to Documint in order to output them on a report.
Many Thanks !!