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 #386: Shed Light on a Bank’s Risky Business

vladimirt94
Météore

My solution 

Révélation
 
Screenshot 2023-08-29 162701.png

HirokiT
Météoroïde
Révélation
Révélation
Solution with filter to separate  high/low thresholds386_Solution.jpg

Ray_Pospisil
Astéroïde

SQL and Alteryx result 

RWvanLeeuwen
Bolide

here's my take

 

workflow

Révélation
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

Révélation
just apply the formula string I prepared in the workflowjust apply the formula string I prepared in the workflow
ahsanaali
Bolide
Révélation
 
Screenshot 2023-08-30 175805.png

adamweaver39
Comète

Suspiciously easy

Révélation
challenge 386 - alteryx flow.jpg
anggapramana
Météore
Révélation
Screenshot 2023-08-31 084640.png

it's fun, thx for the challenge.

gjjadhao
Comète
Révélation
spoiler#386.png

Solution is attached 

MatteoReddavide
Astéroïde

My solution

 

Révélation
Screenshot 2023-08-31 172539.png
Djforesman
Météoroïde
Révélation
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