I did a bit of testing on my end to confirm, and you’re right that the formula column can’t really do this in the way you’re looking for, but there is a different column type that can.
If I understand you correctly, you can use a “Time Tracking” column and automations that trigger when an item is created (or when a status changes) and stop when a status is set to “done”.
Thank you for your response and for explaining the alternative approach.
I would like to confirm that I have already implemented the Time Tracking column with automations in my ticketing tool, as suggested. It is working as expected for tracking time between ticket creation and completion.
However, my requirement is slightly different. I am also looking for an aging column that can automatically calculate and display ticket aging in an easy-to-read format, specifically showing days along with hours (for example: 45 days 8 hours), so that the aging can be quickly understood at a glance without manual calculation.
This would be very useful from a reporting and operational perspective, especially when monitoring open tickets and SLA performance.
Please let me know if there is any existing workaround for this or if this can be considered as a feature request.
Cool solution, I hadn’t thought of going about it this way!
A couple of things to keep in mind:
DAYS(TODAY(), created_datetime) may not be as specific as Victor needs.
TODAY() is midnight today, not “now”. So DAYS(TODAY(), created_datetime) is the time elapsed between created_datetime and 00:00 today. Then approximate “now”.
This approximation is fine most of the time, but it produces edge-case weirdness (especially around midnight or if you’re dealing with timezones).
If {Creation log#DateTime} is later today (e.g., created at 3 PM local but it’s 10 AM for another team member because of a timezone mismatch, you can get negative minutes, which can yield negative days/hours. Also your manual “minutes since midnight” math assumes a clean 24h day. DST days are 23h/25h so that would mess with those formulas on those days.
Thank you for giving me this formula, I have some work on my workplace so, I can’t test your formula after the free time, will check and update you it’s working or not.