Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
Start 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 #366: Three Columns Are a Crowd

MilindG
12 - Quasar
Spoiler
MilindG_0-1681404405125.png

 

Manav_Sehra
8 - Asteroid

My solution is attached. 

 

Spoiler
Manav_Sehra_0-1681416767938.png

 

anthonyw
8 - Asteroid

Challenge Accepted

dicky5150
8 - Asteroid
Spoiler
dicky5150_0-1681456897213.png

 

Liked this challenge, actually learnt a few things with it !!

Dev73
8 - Asteroid

Easy way

Spoiler
challange 366.png

TheUdbhav
8 - Asteroid

Hi Everyone,

 

I used nested IF ELSE to get the output.

 

 

IF IsNull([Address]) THEN "" ELSE [Address]+"," ENDIF
+
IF (IsNull([Apt/Unit])) THEN ""
else
IF IsNull([Zip]) THEN [Apt/Unit] ELSE [Zip] ENDIF
endif
+
IF IsNull([Address]) AND IsNull([Apt/Unit]) THEN [Zip] ELSE "" ENDIF


Please find my attached solution!

EdoardoAversaTIL
8 - Asteroid
Spoiler
EdoardoAversaTIL_2-1681480876194.png

 

Desmond
8 - Asteroid

My solution

jimybyrne17
5 - Atom

 

Spoiler
challenge_366_JB.jpg

 

JS1989
8 - Asteroid

Solution