Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

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 #62: Find the Duplicate Clicks

ken_yap_au
8 - Asteroid

Done.

shahryal
8 - Asteroid
Spoiler
Spoiler

Capture.PNG
jagdeep_singh85
8 - Asteroid

PFA my solution

JP23
7 - Meteor

This is good one in that it tests out your ability to get the most out of the tools, as opposed to knowing which tools to use. As a beginner, it was relatively obvious which tools to use but putting them into practice effectively required me to develop a better understanding of alteryx syntax, particularly for the dates. Hopefully my solution can help others. Cheers. 

bjkay30
8 - Asteroid

Here is my take.  After I finished, I realized you could probably do this with just one tool.

 

Spoiler
62 Solution.PNG
mbogusz
9 - Comet
Spoiler
2019-10-09 15_33_54-Greenshot.png
SueDonim
8 - Asteroid

Getting better at Date and Time handling, but I suspect there was a more direct way to handle this

 

[EDIT: Duh! Don't know why I didn't use the DateTime tool]

 

Spoiler
Process:
- Grouped machine and user ID to allow simple grouping
- Parse date info
- Parse time info
- Recreate datetime in Alteryx format
- Multi-Row tool to calculate difference in time between clicks
- Flag instances where time difference was 30 seconds or less as "1" else "0"
- Clean-up

MySolution.PNG

 

 

 

ddiesel
13 - Pulsar
13 - Pulsar

My solution:

 

Spoiler
Capture.JPG
justindavis
10 - Fireball
Spoiler
challenge_62_solution_justindavis.PNG
RoDO
8 - Asteroid

My solution

 

Spoiler
IF ABS(DateTimeDiff(DateTimeParse([Row-1:EventFireDate],'%m/%d/%y %H:%M:%S'),DateTimeParse([EventFireDate],'%m/%d/%y %H:%M:%S'),'seconds')) < 30 Then 1 ELSE 0 ENDIF

challenge_62_RODO_Solution.png