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
Meteoro

My solution 

Spoiler
 
Screenshot 2023-08-29 162701.png

HirokiT
Meteoroide
Spoiler
Spoiler
Solution with filter to separate  high/low thresholds386_Solution.jpg

Ray_Pospisil
Asteroide

SQL and Alteryx result 

RWvanLeeuwen
Bólido

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
Bólido
Spoiler
 
Screenshot 2023-08-30 175805.png

adamweaver39
Cometa

Suspiciously easy

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

it's fun, thx for the challenge.

gjjadhao
Cometa
Spoiler
spoiler#386.png

Solution is attached 

MatteoReddavide
Asteroide

My solution

 

Spoiler
Screenshot 2023-08-31 172539.png
Djforesman
Meteoroide
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