Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Excel add one hour

I have in cel A1 with the following contents:

7:30:43 which is a time.

But now i want to use a formula to add one hour. What is the best way or how can i do this?

like image 777
sanders Avatar asked Sep 21 '11 21:09

sanders


People also ask

How do I add 1 time in Excel?

Formula Method The most obvious way to increment a number in Excel is to add a value to it. Start with any value in cell A1, and enter "=A1+1" in cell A2 to increment the starting value by one. Copy the formula in A2 down the rest of the column to continuously increment the preceding number.

How do you add hours to time format?

To add a given number of hours to a time, you can add hours divided by 24, or use the TIME function. Note: make sure results are formatted as time. Times in Excel are factional values of 24 hours. One hour of time is 1/24, and 1 minute of time is 1/(24*60) = 1/1440.


1 Answers

=A1+TIME(1,0,0) 

Although, maybe this should be posted on Super User.

like image 103
leonigmig Avatar answered Sep 22 '22 18:09

leonigmig