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 #425: Weekly Allowance Distribution

arshadejaz1
7 - Meteor

Completed

AnnaMikhaylova
9 - Comet

Solved.

a640687
8 - Asteroid
Spoiler
Capture.PNG

Expression for Multi-Row Formula Tool:

 

Spoiler
IF [Name] = "Column_1_Amount" THEN [Value]
ELSEIF [Name] = "Column_2_Amount" THEN IF [Row-1:Value] - 150 > 0 THEN 150 ELSE 0 ENDIF
ELSEIF [Name] = "Column_3_Amount" THEN IF [Row-2:Value] - 300 > 0 THEN 150 ELSE [Row-2:Value] - [Row-1:Value] ENDIF
ELSEIF [Name] = "Column_4_Amount" THEN IF [Row-3:Value] - 450 > 0 THEN 150 ELSE [Row-3:Value] - [Row-1:Value] - [Row-2:Value] ENDIF
ELSEIF [Name] = "Column_5_Amount" THEN IF [Row-4:Value] - 600 > 0 THEN 150 ELSE [Row-4:Value] - [Row-1:Value] - [Row-2:Value] - [Row-3:Value] ENDIF
ELSEIF [Name] = "Column_6_Amount" THEN [Row-5:Value] - [Row-1:Value] - [Row-2:Value] - [Row-3:Value] - [Row-4:Value]
ELSE 0
ENDIF
jassik
8 - Asteroid

Here is the solution

Deborah_Simmonds
8 - Asteroid

Here's my VERY analogue solution! 

AshaDaniels
8 - Asteroid
Spoiler
Screenshot 2024-09-09 100013.png
Yogesh1795
8 - Asteroid

Used Iterative Macro to solve this one as well. Relly getting comfortable with Iterative Macros

Bhaskar39
7 - Meteor

Using Formula tool alone

Tjaronee
6 - Meteoroid

My solution

lwolfie
11 - Bolide

Love ending my week with challenges like this.