How to convert hours to minutes in Excel

In this article, Software Tips will show you how to convert hours to minutes in Excel. Using math We have 1 hour = 60 minutes = 3600 seconds, we apply this formula to calculations in Excel. For example, you have the following timeline:

In this article, Software Tips will show you how to convert hours to minutes in Excel.

Picture 1 of How to convert hours to minutes in Excel

Use math

We have 1 hour = 60 minutes = 3600 seconds, we apply this formula to calculations in Excel.

For example, you have the following timeline:

Picture 2 of How to convert hours to minutes in Excel

In column B with the time you use the formula B2 = A2 * 24, copy the remaining cells in column B, you will get the result of the hours as a decimal.

Picture 3 of How to convert hours to minutes in Excel

If you only want to get hours, you combine with the INT function to get the integer value:

Picture 4 of How to convert hours to minutes in Excel

Similarly, you change minutes and seconds by the formula:

C2 = A2 * 24 * 60
D2 = A3 * 24 * 60 * 60

Picture 5 of How to convert hours to minutes in Excel

Use the CONVERT function

Function syntax: = CONVERT (number, from_unit, to_unit)

Inside:

  1. CONVERT : is the name of the function used to convert
  2. Number : the original number to be converted.
  3. from_unit: unit of original number.
  4. to_unit: units to convert.

The value of the unit:

  1. "day" = if the unit is day.
  2. "hr" = units are hours.
  3. "mn" = units are minutes.
  4. "sec" = units are seconds.

For the above example, the default from_unit value is "day" , and if you want to change to hours / minutes / seconds then change to_unit to "hr" / "mn" / "sec" respectively. And you collect the same way as above.

Picture 6 of How to convert hours to minutes in Excel

Use the functions HOUR, MINUTE and SECOND

Another way to change hours to minutes, seconds; You can use the functions HOUR, MINUTE, SECOND to calculate the number of hours and minutes and use the sum calculation.

Function syntax:

= HOUR (serial_number)
= MINUTE (serial_number)
= SECOND (serial_number)

Where: serial_number is the number to be converted.

For the above example, you type the formula in turn as follows:

B2 = HOUR (A2)
C2 = MINUTE (A2)
D2 = SECOND (A2)

You copy the formula to the remaining lines in the cell to get the result:

Picture 7 of How to convert hours to minutes in Excel

To calculate the total number of minutes in column E, the formula will equal the number of hours * 24 + minutes + seconds / 60.

In cell E2 = B2 * 60 + C2 + D2 / 60. Copy the formula for the remaining rows in the column. You get the following result:

Picture 8 of How to convert hours to minutes in Excel

Good luck!

You've just finished reading the article "How to convert hours to minutes in Excel" edited by the TipsMake team. You can save how-to-convert-hours-to-minutes-in-excel.pdf to your computer here to read later or print it out. We hope this article has provided you with many useful tech tips and tricks. You can search for similar articles on tips and guides. Thank you for reading and for following us regularly.

« PREV How to calculate NPV in Excel
NEXT » How to convert formulas to values ​​in Excel