Announcements
This site is in read only until July 22 as we migrate to a new platform; refer to this community post for more details.

How to remove minutes from current time?

Hi,

There is the column which type is a DateTime, and the initial value is now(). How to remove minutes from current time?

ex) 2024-07-03 15:33   =>   2024-07-03 15:00

Thanks.

Solved Solved
0 6 198
1 ACCEPTED SOLUTION

DATETIME(
DATE(NOW()) & " " &
TEXT(HOUR(TIME(NOW()) - "00:00:00")) & ":00:00"
)

View solution in original post

6 REPLIES 6
Top Labels in this Space