Hello Everyone,
I’m using a library called “Airtable Python Wrapper” which can be found here: Airtable Python Wrapper Documentation — Airtable Python Wrapper documentation
It has a method, “get_all” that will take an Airtable formula to filter records and return the ones that make it through the formula.
filterByFormula = 'IS_AFTER(LAST_MODIFIED_TIME()+\\"2021-01-25T14:23:41.000Z\\")'
def get_date_changes():
query = AT.get_all(formula=filterByFormula)
However, that formula returns an empty list. I know that there are records in that table with modification dates later than that as new records are added almost every day. Can anyone tell me what might be wrong with that formula?
Thanks!
-Dan
