Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start Free Trial

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