Any ideas how I could add minutes to the current time?
TIMENOW()+30 adds thirty HOURS and I need to add MINUTES…
Any ideas how I could add minutes to the current time?
TIMENOW()+30 adds thirty HOURS and I need to add MINUTES…
@Michael
Can you try with
TIMENOW() + “00:30:00” OR TIMENOW() + (30/60)
See examples here.
Man… I just wanna add 30 minutes!..
TIME(
CONCATENATE(
HOUR(TIME(NOW())-"00:00:00"),
":",
MINUTE(TIME(NOW())-"00:00:00")+30,
":",
SECOND(TIME(NOW())-"00:00:00")
)
)
Can you try with:
TIMENOW() + "000:30:00"
Levent KULACOGLU
ABLE3 Ventures, LLC
Managing Partner
For anyone else looking for a solution all the documentation appears to be wrong and suggests you add the time in the wrong format, the format should be
Note you use the quotes and three numbers for the hours, not just two as most of the documentation suggests.
solved my problem with time addition, thanks @StephenHind