Welcome to the Airtable community!
The exact formula will depend on the field types of the inputs. For example, the process will be different if your time is a text field versus a duration field.
If your time is a duration field, you can use DATEADD()
to add the number of seconds in the duration field to the date.
If your time is a number field, you can use DATEADD()
.
If your time is a text field, you can use DATETIME_PARSE()
in combination with DATETIME_FORMAT
or DATESTR
. It looks like this is the case, but it can be hard to tell because your {Time Test} is a formula field…
DATETIME_PARSE(
DATESTR({Date Test}) & " " & {Time Test},
"YYYY-MM-DD hh:mm"
)
All of these functions are documented in the formula field reference.