Contact Form

Name

Email *

Message *

Cari Blog Ini

Add 30 Minutes To Time In Excel

How to Add Minutes to a Time in Excel

Four Easy Formulas

Adding minutes to a time in Excel is a common task that can be accomplished using a variety of formulas. Here are four of the most common formulas:

Formula 1: Using the TIME Function

The TIME function allows you to add minutes to a time by specifying the hour, minute, and second components. The syntax of the TIME function is:

``` =TIME(hour, minute, second) ```

For example, to add 30 minutes to the current time, you would use the following formula:

``` =TIME(HOUR(NOW()), MINUTE(NOW()) + 30, SECOND(NOW())) ```

Formula 2: Using the DATEVALUE Function

The DATEVALUE function can be used to convert a date string into a serial number. This serial number can then be used to add minutes to a time.

``` =DATEVALUE(time_string) + (minutes_to_add / 1440) ```

For example, to add 30 minutes to the time "1:00 PM", you would use the following formula:

``` =DATEVALUE("1:00 PM") + (30 / 1440) ```

Formula 3: Using the MOD Function

The MOD function can be used to find the remainder of a division operation. This remainder can then be used to add minutes to a time.

``` =(time_value + minutes_to_add) / 24 ```

For example, to add 30 minutes to the time "1:00 PM", you would use the following formula:

``` =(TIMEVALUE("1:00 PM") + 30) / 24 ```

Formula 4: Using the INT Function

The INT function can be used to round a number down to the nearest integer. This integer can then be used to add minutes to a time.

``` =INT(time_value + minutes_to_add) ```

For example, to add 30 minutes to the time "1:00 PM", you would use the following formula:

``` =INT(TIMEVALUE("1:00 PM") + 30) ```

Conclusion

These are just four of the many ways to add minutes to a time in Excel. The best formula to use will depend on the specific needs of your project.


Comments