How do I add 4 hours 59 minutes to this Time1 Table -
In such a way the result will be in HH:mm:ss format.
Hi @henrygeorge ,
I modified the workflow from the previous post !
Cheers,
Jean-Baptiste
Hello @henrygeorge ,
If your column has already the time format you could use the datetimeadd function:
datetimeadd([Time1], 299, 'minutes')
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.Regards
Hi @henrygeorge the following formula should do it:datetimeadd('2020-01-01 '+[time1],299,'minutes') Ensuring that the datatype is TimeHope that helps,
Ollie