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

vladimirt94
7 - Meteor

My solution 

Spoiler
 
Screenshot 2023-08-29 162701.png

HirokiT
6 - Meteoroid
Spoiler
Spoiler
Solution with filter to separate  high/low thresholds386_Solution.jpg

Ray_Pospisil
8 - Asteroid

SQL and Alteryx result 

RWvanLeeuwen
11 - Bolide

here's my take

 

workflow

Spoiler
there's a descrepancy between the thresholf amber field and the actual low value border, so I edited that to ensure I only get 1 result backthere's a descrepancy between the thresholf amber field and the actual low value border, so I edited that to ensure I only get 1 result back

batch macro

Spoiler
just apply the formula string I prepared in the workflowjust apply the formula string I prepared in the workflow
ahsanaali
11 - Bolide
Spoiler
 
Screenshot 2023-08-30 175805.png

adamweaver39
9 - Comet

Suspiciously easy

Spoiler
challenge 386 - alteryx flow.jpg
anggapramana
7 - Meteor
Spoiler
Screenshot 2023-08-31 084640.png

it's fun, thx for the challenge.

gjjadhao
9 - Comet
Spoiler
spoiler#386.png

Solution is attached 

MatteoReddavide
8 - Asteroid

My solution

 

Spoiler
Screenshot 2023-08-31 172539.png
Djforesman
6 - Meteoroid
Spoiler
Managed to do this with one formula
IF IsNull([Green Sign]) THEN
  IF [Value]>[Amber High] THEN 'Red'
  ELSEIF [Value]<=[Amber Low] THEN 'Green'
  ELSE 'Amber' ENDIF
ELSE
  IF [Value]>[Amber High] THEN 'Green'
  ELSEIF Value<=[Amber Low] THEN 'Red'
  ELSE 'Amber' ENDIF
ENDIF