adding time in excel

Copper Contributor

I would like cell A1 to display 8 a.m.  I would like cell A2 to equal cell A1 plus 6 hours.  This should display 2 p.m. How do I do this?

2 Replies

@bkmendo

 

Hi,

 

Try this simple formula:

=TIME(HOUR(A1)+6,MINUTE(A1),SECOND(A1))

 Add hours to a time value.png

 

Hope that helps

 

@bkmendo 

As variant

=A1+6/24