Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
Does anyone know how to round down to the nearest 30 minute interval with date and time stamps?
Ex :
01/01/2018 07 :05 :00 to 07 :00 :00
01/01/2018 07 :29 :00 to 07 :00 :00
01/01/2018 07 :30 :00 to 07 :30 :00
01/01/2018 07 :59 :00 to 07 :30 :00
01/01/2018 08 :00 :00 to 08 :00 :00
Thanks,
Tsiry
try like this
=time(round(frac(Time), 1/24/2) , 'hh:mm:ss')
Or, may be using floor() to round it down ? like:
time(floor(frac(date#(time,'dd/MM/yyyy hh :mm :ss')), 1/24/2) , 'hh:mm:ss')
Please do not double-posting: Rounding time down to nearest 30 minute Interval
Basically it has been said already but you can find more examples here: