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!

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

sandeep4076
6 - Meteoroid

My solution

GavinJ
7 - Meteor
Spoiler
GavinJ_0-1664450654947.png

 

Thomas_Wells_2dot0
8 - Asteroid

It's not very often that it only takes one formula! 

 

Spoiler
IF LEFT([date],1) = '1' THEN "20"+SUBSTRING([date],1,2)+"-"+SUBSTRING([date],3,2)+"-"+Right([DATE], 2)
ELSEIF LEFT([date],1) = '0' THEN "19"+SUBSTRING([date],1,2)+"-"+SUBSTRING([date],3,2)+"-"+Right([DATE], 2)
ELSE ""
ENDIF

2022-10-01_20-44-28.png

gautiergodard
13 - Pulsar

solution attached 

AndrewHoData
8 - Asteroid

This was my first time using the...

Spoiler
REPLACEFIRST function! It's great learning new functions!
challenge 58 attempt.png



BenoitC
Alteryx
Alteryx

Done

 

BenoitC_0-1665152546422.png

 

Benoit Conley

Sales Engineer
Alteryx, Inc.

Jose_Flores22
8 - Asteroid

my attempt

bkurt
8 - Asteroid

Here's my solution.

Thanks for the lesson!

scooby_snacks
8 - Asteroid

My solution

daiphuongngo
9 - Comet
Spoiler
Challenge #58 An Odd String to Date Conversion.jpg