Help

Adding Date and Time together from a different field

Topic Labels: Dates & Timezones
1510 2
cancel
Showing results for 
Search instead for 
Did you mean: 
Mae_Infante
5 - Automation Enthusiast
5 - Automation Enthusiast

Hi All,

image

So I have a Date and Time field, in separate fields, I wanted to combine the 2 fields together in 1. Is there any formula for this case?

I’m looking for a result in this way “1/7/2022 19:00”

Thank you in advance!

My Best,
Mae

2 Replies 2
Zack_S
8 - Airtable Astronomer
8 - Airtable Astronomer

Try combining the two fields with CONCATENATE to create a string. You will likely need to use DateTime_Format as well in your concatenate field.

Then use DATETIME_PARSE

Hi @Mae_Infante,

Working with dates & times can be extremely tricky in Airtable!

I believe that this formula should work in your scenario:

DATETIME_PARSE(
DATETIME_FORMAT({Release Date},'M/D/YYYY') & {Dubai Release Time},
'M/D/YYYY H:mm'
)