Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.
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 #386: Shed Light on a Bank’s Risky Business

PhilipMannering
16 - Nebula
16 - Nebula

Solution attached.

 

Spoiler
Screenshot 2023-09-24 181426.png
toby49
8 - Asteroid
Spoiler
Screenshot 2023-09-25 195937.png


G_Elson
6 - Meteoroid
Spoiler
Challenge 386 Shed Light on a Bank’s Risky Business.PNG

Paridhi_Agrawal
8 - Asteroid
Spoiler
Spoiler
Yoshiro_Fujimori
15 - Aurora

My solution.

Could not follow the sort order.

Spoiler
Workflow
Challenge_386_1.png
Formula Tool
IF IsNull([Green High])
THEN
  IF [Value] > [Green Low] THEN "Green"
  ELSEIF [Value] > [Amber Low] AND [Value] <= [Amber High] THEN "Amber"
  ELSEIF [Value] < [Red] THEN "Red"
  ELSE Null()
  ENDIF
ELSE
  IF [Value] >= [Green Low] AND [Value] <= [Green High] THEN "Green"
  ELSEIF [Value] > [Amber Low] AND [Value] <= [Amber High] THEN "Amber"
  ELSEIF [Value] > [Red] THEN "Red"
  ELSE Null()
  ENDIF
ENDIF
hdesai7
8 - Asteroid
Spoiler
Screenshot 2023-09-29 at 8.58.56 PM.png


Nice one for finance folks!

Reesetrain2
9 - Comet
9 - Comet

All,

 

My submission!

 

Spoiler
Screenshot 2023-09-30 112232.png

SachinG
8 - Asteroid
Spoiler
Screenshot 2023-10-02 142322.png
travis_vannoy
6 - Meteoroid

my solution.  i kept it simple and didn't really use the signs columns to limit each RAG requirement.  but as long as those don't change over time i think it would work for the challenge.

DataNath
17 - Castor
17 - Castor

My solution to #386.

 

Spoiler
386.png