Hey everyone!
I’m running into a challenge while using Airtable in conjunction with Fillout forms. When using the duration field in Fillout, it only provides the exact times (start and end) rather than a length of time in between. To simplify things, I’ve limited entries to a start time and end time, assuming the event will occur on the same day.
Here’s what I’m trying to do:
•I’d like to create a formula in Airtable that takes the start date (provided in a date field) and combines it with the end time (from the duration field, which doesn’t have an attached date).
•The goal is to format the end time as part of the same day as the start date.
For example:
• Start Date: 2025-01-14 08:00 AM
•End Time: 10:30 AM
• Result: 2025-01-14 10:30 AM
How would I go about writing a formula that merges these fields correctly? Any advice or tips would be greatly appreciated!
Thank you in advance for your help!
For reference, here's the formula I've already tried:
DATETIME_PARSE(
DATETIME_FORMAT({Start Time}, 'YYYY-MM-DD') & "T" & DATETIME_FORMAT({Duration}, 'HH:mm'),
'YYYY-MM-DDTHH:mm'
)