Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
Community is experiencing an influx of spam. As we work toward a solution, please use the 'Notify Moderator' option on the ellipsis menu to flag inappropriate posts.

Alteryx Designer Desktop Discussions

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

Change date format

Venkateshp
5 - Atom

Hi team

how can i convert the date format(dd-mm-yyyy) to 

Required format(dd-Mon-yyyy) for multiple columns 

 

Example i have 01-01-2023 and i want is 01-JAN-2023

 

 

 

 

3 REPLIES 3
NMangera
10 - Fireball
Spoiler
NMangera_0-1680867444285.png

 

this should do the trick

martinding
13 - Pulsar

Hi @Venkateshp,

 

 

Let's say your date field is called [Date].

 

So in the formula tool, you will write:

DateTimeFormat([Date], "%d-%b-%Y")  and your data type should be set to a string type (e.g. String).

binuacs
21 - Polaris

@Venkateshp One way of doing this

DateTimeFormat(DateTimeParse([Date],'%d-%m-%Y'),'%d-%b-%Y')

binuacs_0-1680871572999.png

 

Labels