62

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?

sanders
  • 10,794
  • 27
  • 85
  • 127
  • 3
    As a financial developer who produces solutions mixing VBA, .NET VSTO and Excel worksheet functions, this is most certainly not off topic. – Ian Oct 05 '15 at 14:54

3 Answers3

118
=A1+TIME(1,0,0)

Although, maybe this should be posted on Super User.

apaderno
  • 28,547
  • 16
  • 75
  • 90
leonigmig
  • 2,736
  • 3
  • 25
  • 21
14

In cell A1, enter the time.
In cell B2, enter =A1+1/24

Anonymous
  • 11,748
  • 6
  • 35
  • 57
jenny
  • 141
  • 1
  • 2
0

This may help you as well. This is a conditional statement that will fill the cell with a default date if it is empty but will subtract one hour if it is a valid date/time and put it into the cell.

=IF((Sheet1!C4)="",DATE(1999,1,1),Sheet1!C4-TIME(1,0,0))

You can also substitute TIME with DATE to add or subtract a date or time.

Pᴇʜ
  • 56,719
  • 10
  • 49
  • 73
Wuggles
  • 11
  • 4