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! Go to Solution.
DATETIME(
DATE(NOW()) & " " &
TEXT(HOUR(TIME(NOW()) - "00:00:00")) & ":00:00"
)
User | Count |
---|---|
36 | |
8 | |
3 | |
2 | |
2 |