How do I calculate the difference between two dates in Stackby?

2026-05-01T10:40:00Z

Use the DATETIME_DIFF() function. Example: DATETIME_DIFF({End Date}, {Start Date}, ‘days’) returns the number of days between two dates. You can also use ‘months’, ‘years’, ‘hours’, ‘minutes’ as the third argument. For business days, combine with WORKDAY() or create a custom formula that excludes weekends.