In case you missed the announcement: Alteryx One is here, and so is the Spring Release! Learn more about these new and exciting releases here!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

convert string to date format

bh1789
8 - Asteroid

can someone assist, I need to convert string "Jul'23" to "2023/07/01"

I am using DateTime Parse tool but my output is [null]

2 REPLIES 2
cjaneczko
13 - Pulsar

You can use the following formula where [Field1] is the field that contains "Jul'23". 

 

 

datetimeformat(DateTimeParse([Field1],"%h'%Y"),'%Y/%d/%m')

 

JosephSerpis
17 - Castor
17 - Castor

Hi @bh1789 you will need to use Mon'yy in the Datetime tool to get a output based on the format of your date.

 

Datetime_06112023.JPG

 

I would also recommend you have a look at the specifers Alteryx use for dateformats you can find them here.

Labels
Top Solution Authors