Get Inspire insights from former attendees in our AMA discussion thread on Inspire Buzz. ACEs and other community members are on call all week to answer!

Alteryx Designer Desktop Discussions

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

Date to Day Conversions

DCB1983
5 - Atom

I have rows and rows of information with 3 years worth of data.

 

I have the Date as YYYY-MM-DD and using this, I want to determin what day of the week they fall on (Mon, Tue, Wed. etc....)

 

Any advice ?

2 REPLIES 2
LordNeilLord
15 - Aurora

Hey @DCB1983 

 

DateTimeFormat(Date, "%A") or DateTimeFormat(Date, "%a")

 

https://help.alteryx.com/10.1/Reference/DateTimeFunctions.htm

Thableaus
17 - Castor
17 - Castor

Hi @DCB1983 

 

 

Use DateTimeFormat function in Formula Tool.

 

DateTimeFormat([Field1],"%A")

Labels