Hey guys, curious how i can implement this. I want to count days since a record was created, but when i use a formula it doesn't update automatically. What other methods has anyone found to make that work?
To keep a column updated with the count of days since a record was created, you can:
Use a formula referencing the "Created At" column and JavaScript date functions (like moment()), which is the standard approach. However, formulas only recalculate when a row is updated, so the value won't auto-refresh daily [1].
For more dynamic updates, set up an automation using webhooks and enable Auto-Update. This allows your table to process new or refreshed data automatically, ensuring your "days since created" value stays current as new data comes in .
Alternatively, use an AI formula with a prompt like "How long ago was /start date from today" to calculate the duration as a decimal, which can be helpful for tenure tracking or similar use cases .
If you need the value to update daily without manual intervention, automating data refreshes via webhooks and Auto-Update is the most reliable method.