Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
We’re experiencing technical issues with our vendor that are affecting license activations for Designer Desktop. We don’t yet have an estimated resolution time. We apologize for the inconvenience and will share updates as we have them.
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

Qiu
21 - Polaris
21 - Polaris

I am sorry but there was a miss there. and @AYXAcademy Thanks for correcting it.

Spoiler
2024-05-21 103503.png
Yoshiro_Fujimori
15 - Aurora
15 - Aurora

My solution.

 

Spoiler
Workflow
Challenge_425_Workflow.png

Formula Tool (1)
Quotient = FLOOR([Amount] / [Allowance])
Remainder = Mod([Amount], [Allowance])

Formula Tool (2)
Week = "Week_" + ToString([RowCount])
Allowance = 
  IF [RowCount] <= [Quotient] 
  THEN [Allowance] 
  ELSEIF [RowCount] = [Quotient] + 1 
  THEN [Remainder] 
  ELSE 0 
  ENDIF


Formula Tool (3)
CARRY_FORWARD = [Amount] - [Sum_Allowance]

 

 

 

 

DaisukeTsuchiya
14 - Magnetar
14 - Magnetar
Spoiler
スクリーンショット 2024-05-21 161746.png
RolandSchubert
16 - Nebula
16 - Nebula
Spoiler
425.jpg

aatalai
15 - Aurora

didn't use muilti row formula, but got the answer

petrl
Alteryx Alumni (Retired)

My solution attached.

Petr Leitermann
Technical Product Manager for DCM
dhelms
5 - Atom

My work attached. 

alacoume
9 - Comet

My solution: 

Spoiler
Challenge_425.jpeg
Nasseha
7 - Meteor

My solution 

lynnesonney
8 - Asteroid

Totally overthought this

Spoiler
 

425.PNG