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

Awaleczek
5 - Atom

If you end up replacing that empty high value with a number like "999999999999" have a look at this one. It's unlikely that such a value is ever reached but you can never be 100% certain :)

 

 

Spoiler
IF [Value] > [Amber Low] and [Value] <= [Amber High]
THEN 'Amber'
ELSEIF [Value] > [Green Low] and ([Value] <= [Green High] OR IsNull([Green High]))
THEN 'Green'
ELSE 'Red'
ENDIF
ScottLewis
8 - Asteroid

Pleasantly fiddly and a good reminder to look at the data rather than just reading the instructions.

tammybrown_tds
8 - Asteroid

I thought that I was oversimplifying things, but maybe not.

Spoiler
Screenshot 2023-09-05 132013.jpg
JamesCharnley
13 - Pulsar
Spoiler
image.png

nice formula

synergy825
8 - Asteroid
Spoiler
Challenge #386 Screenshot.JPG
Anmol97
8 - Asteroid

Here's my solution

nSpire
8 - Asteroid
Spoiler
386.png
deansrd44
6 - Meteoroid

solution attached 

 

 

LiuZhang
9 - Comet
Spoiler
386.png
karlhansen
9 - Comet
Spoiler
solution_386.jpg

I could have reduced most of this to a single Formula tool, but maintenance would be more difficult.