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)
 
Suzu
9 - Comet
 
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
Alteryx

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