Skip to main content

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!

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

 


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

 


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