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 #381: Average Monthly Sales with a Twist

natalierosehouse
7 - Meteor

3 solutions to this one! the third could be converted to IN-DB tools if needed on large datasets

Amy_smart
11 - Bolide

Here is my solution. 

lwolfie
11 - Bolide

Nice challenge

cmoussa
8 - Asteroid

WF.png

 

3I_ATLAS
9 - Comet

Used an interesting artifice to reach the solution faster.. check it out!

Spoiler
WC_381.jpg

if [Row-1:sum3conseq] >30000 then
[Row-1:sum3conseq]

elseif [Row-1:sum3conseq] >20000 then
[Row-1:sum3conseq] + 10000 + tonumber([value])

elseif [Row-1:sum3conseq] >10000 then ///for clarity only
[Row-1:sum3conseq] + 10000 + tonumber([value])

elseif tonumber([Value])>0 then
tonumber([Value]) + 10000
else
0

endif

 

 

JBevan89
8 - Asteroid

Solution Attached

jfissel
8 - Asteroid
Spoiler
challenge_381_jfissel.png
TomashevskiiVladimir
8 - Asteroid

381.png

DylanBell
10 - Fireball

A quick challenge to practice my speed


Bulien
RebekaMazuchova
8 - Asteroid

:)