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 #16: Parsing Out the New-line Character

LittleE
8 - Asteroid

That was a cleansing experience.

Spoiler
LittleE_0-1594522248040.png

 

troyeb4
8 - Asteroid

See my flow below, solution attached.

Spoiler

troyeb4_0-1594821808191.png

 

Samanthaj_hughes
ACE Emeritus
ACE Emeritus

Mary had a little lamb....

#Alteryxrocks
jsenk
7 - Meteor

Solution

CharlesZ
7 - Meteor

CharlesZ_0-1595470078041.png

 

matt_un
7 - Meteor
Spoiler
matt_un_0-1595500605946.png

 

fluteman
8 - Asteroid

This one was straightfoward.

I used this to derive the month value: (there is preceding code)

 

IF [Current_Month] = 'JAN' THEN '01' ELSEIF [Current_Month] = 'FEB' THEN '02' ELSEIF [Current_Month] = 'MAR' THEN '03' ELSEIF [Current_Month] = 'APR' THEN '04' ELSEIF [Current_Month] = 'MAY' THEN '05' ELSEIF [Current_Month] = 'JUN' THEN '06' ELSEIF [Current_Month] = 'JUL' THEN '07' ELSEIF [Current_Month] = 'AUG' THEN '08' ELSEIF [Current_Month] = 'SEP' THEN '09' ELSEIF [Current_Month] = 'OCT' THEN '10' ELSEIF [Current_Month] = 'NOV' THEN '11' ELSEIF [Current_Month] = 'DEC' THEN '12' ELSE '12' ENDIF

szade1
8 - Asteroid

Here's my solution:

Spoiler
szade1_0-1595579670540.png

 

 

Thanks,

S.

JoePC
9 - Comet

Solution Attached

DemandEngineer
8 - Asteroid

I imagine this was harder before the data cleansing tool.  Would have had to use formula tool with string functions I would imagine.