Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

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 #58: An Odd String to Date Conversion

mchr
8 - Asteroid

.

jeremy_prolic
Alteryx
Alteryx

Here's my answer.

Kevin_VANCAPPEL
10 - Fireball

Hello,

 

 here is my proposal.

  

  Regards,

  Kévin V.

DanTh
Alteryx
Alteryx

Single block solution!

 

 

Spoiler
Pretty sure I've seen this one before (a few times), but you can solve using a single Formula block: 

DateTimeParse(
IF Left([date], 1) = "1"
THEN "20" + Right([date], Length([date]) - 1)
ELSEIF Left([date], 1) = "0"
THEN "19" + Right([date], Length([date]) - 1)
ELSE "Error"
ENDIF
, "%y%m%d")

 

 

RS452
7 - Meteor

Here's my solution!

This is easy but I complicated it..😐

TimN
13 - Pulsar
Spoiler
TimN_0-1632365543605.png

 

Duplicate?

tusharpl
7 - Meteor

Solved

tusharpl
7 - Meteor

Here is my solution

angelakong
8 - Asteroid

My solution

Alo_Erick
7 - Meteor
Spoiler
Alo_Erick_0-1632862842803.png