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

sann0638
8 - Asteroid

Just uploading ones that I have had a go at. Thanks for putting these together!

jbranaum
8 - Asteroid

My Solution

JamesMA
Alteryx Alumni (Retired)
 
Inactive User
Not applicable
 
Kenda
16 - Nebula
16 - Nebula
Spoiler
Challenged myself to use just one tool to solve this problem.
Capture.PNG
ipeng
8 - Asteroid

My solution

RolandSchubert
16 - Nebula
16 - Nebula

My solution

RandeepB
Alteryx
Alteryx

My solution:

papalow
8 - Asteroid

Nice challenge

DavidThorpe
Alteryx Alumni (Retired)

My solution:

 

Spoiler
Done in one tool: multi row formula 

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