Skip to main content
Best answer

Airtable: find all records created in the last 24 hours


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!

Best answer by GetUWired

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

 

View original
Did this topic help you find an answer to your question?
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

robschmidt
Forum|alt.badge.img+9
  • Zapier Expert
  • 617 replies
  • August 1, 2022

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"))

 


GetUWired
Forum|alt.badge.img+12
  • Zapier Expert
  • 1030 replies
  • Answer
  • August 1, 2022

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

 


  • Author
  • Beginner
  • 5 replies
  • August 2, 2022

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 !!