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

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
11 - Bolide
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).

binu_acs
21 - Polaris

@Venkateshp One way of doing this

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

binuacs_0-1680871572999.png

 

Labels
Top Solution Authors