Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.
Calculate the difference between two times

Let's say that you want find out how long it takes for an employee to complete an assembly line operation or a fast food order to be processed at peak hours. There are several ways to calculate the difference between two times.

Present the result in the standard time format

There are two approaches that you can take to present the results in the standard time format (hours : minutes : seconds). You use the subtraction operator (-) to find the difference between times, and then do either of the following:

Apply a custom format code to the cell by doing the following:

  1. Select the cell.

  2. On the Home tab, in the Number group, click the arrow next to the General box, and then click More Number Formats.

  3. In the Format Cells dialog box, click Custom in the Category list, and then select a custom format in the Type box.

Use the TEXT function to format the times: When you use the time format codes, hours never exceed 24, minutes never exceed 60, and seconds never exceed 60.

Example Table 1 — Present the result in the standard time format

Copy the following table to a blank worksheet, and then modify if necessary.

A

B

1

Start time

End time

2

6/9/2007 10:35 AM

6/9/2007 3:30 PM

3

Formula

Description (Result)

4

=B2-A2

Hours between two times (4). You must manually apply the custom format "h" to the cell.

5

=B2-A2

Hours and minutes between two times (4:55). You must manually apply the custom format "h:mm" to the cell.

6

=B2-A2

Hours, minutes, and seconds between two times (4:55:00). You must manually apply the custom format "h:mm:ss" to the cell.

7

=TEXT(B2-A2,"h")

Hours between two times with the cell formatted as "h" by using the TEXT function (4).

8

=TEXT(B2-A2,"h:mm")

Hours and minutes between two times with the cell formatted as "h:mm" by using the TEXT function (4:55).

9

=TEXT(B2-A2,"h:mm:ss")

Hours, minutes, and seconds between two times with the cell formatted as "h:mm:ss" by using the TEXT function (4:55:00).

Note: If you use both a format applied with the TEXT function and apply a number format to the cell, the TEXT function takes precedence over the cell formatting.

For more information about how to use these functions, see TEXT function and Display numbers as dates or times.

Example Table 2 — Present the result based on a single time unit

To do this task, you'll use the INT function, or the HOUR, MINUTE, and SECOND functions as shown in the following example.

Copy the following table to a blank worksheet, and then modify as necessary.

A

B

1

Start time

End time

2

6/9/2007 10:35 AM

6/9/2007 3:30 PM

3

Formula

Description (Result)

4

=INT((B2-A2)*24)

Total hours between two times (4)

5

=(B2-A2)*1440

Total minutes between two times (295)

6

=(B2-A2)*86400

Total seconds between two times (17700)

7

=HOUR(B2-A2)

The difference in the hours unit between two times. This value cannot exceed 24 (4).

8

=MINUTE(B2-A2)

The difference in the minutes unit between two times. This value cannot exceed 60 (55).

9

=SECOND(B2-A2)

The difference in the seconds unit between two times. This value cannot exceed 60 (0).

For more information about how to use these functions, see INT function, HOUR function, MINUTE function, and SECOND function.

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×