Calling all Alteryx customers: Refer your colleague to try Alteryx and receive a $50 gift card. Sign up now!
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

 

Bennu
8 - Asteroid

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
9 - Comet

A quick challenge to practice my speed


Bulien
RebekaMazuchova
8 - Asteroid

:)