In case you missed the announcement: Alteryx One is here, and so is the Spring Release! Learn more about these new and exciting releases here!
Free Trial

Weekly Challenges

Solve the challenge, share your solution and summit the ranks of our Community!

Also available in | Français | Português | Español | 日本語
IDEAS WANTED

Want to get involved? We're always looking for ideas and content for Weekly Challenges.

SUBMIT YOUR IDEA

Challenge #46: Formatting a Date from an Integer

chirimoyayachay
8 - Asteroid

here you go

cerinawoo
7 - Meteor

IIF(Left([date], 1)='0','19','20') + Right([date], Length([date])-1)

KMa885
7 - Meteor

my solution

Arran
8 - Asteroid

Awesome

czello
8 - Asteroid

One solution

Anee
7 - Meteor

Solved

mshishido
8 - Asteroid

ez

TurboToad
11 - Bolide

Nice and quick!

Spoiler
datetimeparse(iif(StartsWith([date], '1'),'20'+Right([date],6),'19'+Right([date],6)),'%Y%m%d')
Aravindaval
8 - Asteroid

completed

SureshRathi
7 - Meteor

Solved..