Community Halloween is live until October 31st! Complete any 2 quick activities to earn the 2025 Community Halloween badge. Feeling brave? Check out the activities here
Start Free Trial

Alteryx Designer Desktop Discussions

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

Formatting of Date Field

THECUSE4463
6 - Meteoroid

I am trying to convert a date field so that it appears as follows: May 31, 2023.

The first formula in the screenshot I've attached first results in the date appearing as 2023-05-31 (Date format).

The second formula converts the result into the following 05/31/2023 (String format).

How would I go about configuring my workflow so that the first result (2023-05-31) appears as May 31, 2023?

3 REPLIES 3
ShankerV
17 - Castor

Hi, Try the below one.

 

DateTimeFormat([Field1],"%B %d, %Y")

 

 

Many thanks

Shanker V

DataNath
17 - Castor
17 - Castor

Hey @THECUSE4463, you can do that with the following expression:

 

DateTimeFormat([Date],'%B %d, %Y')

 

DataNath_0-1687437049931.png

THECUSE4463
6 - Meteoroid

Thank you very much. That worked.

Labels
Top Solution Authors