Add duration to a date time entry to calculate the end time

I am able to add DAYS easily using a math column to a date-time value but I need to just increment the MINUTES instead.

For example a start date of 9/14/24 4:00 PM + 45 minutes duration should produce 9/14/24 4:45 PM as an END time so the events display correctly on a calendar.

Glide seems to only want to add days by default. Seems like this must have been addressed but I can’t find a topic.

thanks as always

It’s just a math conversion. There’s 1440 minutes in a day, so 45/1440 will give you the decimal equivalent in days.

2 Likes