Help with time function

  • Thread starter Thread starter David Joseph
  • Start date Start date
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
(e-mail address removed)
 
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
 
Back
Top