Help with time function

D

David Joseph

I NEED HELP...

if cell a1 lets say is 7:00 and I would like to
add 15 minutes to this time in cell a2 what would be the formula.
Everything I seem to try fails.

thanks
David Poe
[email protected]
 
J

JE McGimpsey

One way:

A2: =A1 + TIME(0,15,0)

another:

A2: =A1 + 15/(24*60)

or equivalently

A2: = A1 + 15/1440

or, equivalently

A2: =A1 + 1/96
 
Top