Hi @Kevin_Bower ,
Welcome to Airtable Community !
This is the ISO date formate, you can use the DATETIME_FORMAT() in the formula to make it more friendly
Hi @Kevin_Bower ,
Welcome to Airtable Community !
This is the ISO date formate, you can use the DATETIME_FORMAT() in the formula to make it more friendly
Thank you for your response! So Ive used DATETIME_FORMAT In the fields that are being fed and it comes out wrong still. Are you saying somewhere in the larger formula you could drop it in? If so where would it go in this sequence?
IF( FIND("," , {Time}),
LEFT({Time},
FIND(",", {Time})-1
),
{Time}
)
Thank you for your response! So Ive used DATETIME_FORMAT In the fields that are being fed and it comes out wrong still. Are you saying somewhere in the larger formula you could drop it in? If so where would it go in this sequence?
IF( FIND("," , {Time}),
LEFT({Time},
FIND(",", {Time})-1
),
{Time}
)
I think this might solve the issue
IF( FIND("," , {Time}),
DATETIME_FORMAT(LEFT({Time},
FIND(",", {Time})-1
),‘MM/DD/YYYY hh:mm a’),
DATETIME_FORMAT({Time},‘MM/DD/YYYY hh:mm a’)
)
Take care of the timezone though if you are using Time in your email. If you dont need the time, you can get ride of the “hh:mm a”
Let me know if this works