Apr 02, 2019 10:51 PM
Hi Friends
I have date data that is being presented to me in a YYYYMMDD format. I am putting that in one column. I would like to create a formula column to convert that unstructured date column to a proper date format. Can anyone suggest the composition of that formula. I have tried a few things but nothing is working.
Apr 03, 2019 12:30 AM
Hi @Dean_Lutrin - you need the DATETIME_PARSE formula:
Interprets a text string as a structured date, with optional input format and locale parameters. The output format will always be formatted ‘M/D/YYYY h:mm a’
So in your case something like:
DATETIME_PARSE({Your field name}, 'YYYYMMDD')
JB
Apr 03, 2019 01:03 AM
Thanks so much! Perfect… and simple.