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 #10: Date Time Calculations

mithily
8 - Asteroid
Spoiler
Spoiler
spoiler  I used the ouputs datetimeout values to match the numbers exactly
Aske_T
6 - Meteoroid

Solution - Difference in the time stamps tho. :) 

CVCurcurato
8 - Asteroid

Was so confused for a while because I didn't realize the input timestamps were off by 41 seconds! One formula tool solution.

dj-khaled-another-one.gif

MatteoReddavide
8 - Asteroid

My solution

 

Spoiler
Screenshot 2023-07-14 165615.png
lwolfie
11 - Bolide

My solution

MartinStraech
8 - Asteroid

My solution. Modulus is a very useful math function.

 

Spoiler
SolutionClipping.PNG
H_a_n_g_C_h_e_n__x3
8 - Asteroid

It is honestly a fun one 

josedlr00
8 - Asteroid

I spent a long time figuring out the answer to this challenge. It was a good challenge in which I learned more about the date formulas. I definitely need more practice.

jstewa13
7 - Meteor

went quick, maybe not the cleanest math but it works

Krzysztof_Hyla_1986
8 - Asteroid

My solution. Actually 2 alternative solutions :-)

 

Spoiler
Days = DateTimeDiff([Time_Now],[TIMESTAMP],'day')
Hours = Mod( DateTimeDiff([Time_Now],[TIMESTAMP],'hours') , 24)
Minutes = Mod( DateTimeDiff([Time_Now],[TIMESTAMP],'minutes'), 60)
Seconds = Mod( DateTimeDiff([Time_Now],[TIMESTAMP],'seconds'), 60)