Want to get involved? We're always looking for ideas and content for Weekly Challenges.
SUBMIT YOUR IDEADays = DateTimeDiff([Time_Now],[TIMESTAMP],'days')
Hours = DateTimeDiff([Time_Now],[TIMESTAMP],'hours')-([Days]*24)
Minutes = DateTimeDiff([Time_Now],[TIMESTAMP],'minutes') -
(DateTimeDiff([Time_Now],[TIMESTAMP],'hours')*60)
Seconds = DateTimeDiff([Time_Now],[TIMESTAMP],'seconds') -
(DateTimeDiff([Time_Now],[TIMESTAMP],'minutes')*60)
Nice.
Here's my solution for this challenge. I did update the task input data to be the same as the output data.
I went for separate formula tools for each step