HOUR function is used to return the hour as a number between 0 and 23 from a given time.

HOUR Function: A Brief

The HOUR function in Excel extracts the hour from a given time and returns a number between 0 and 23. For example, if the time is 10:30 AM, the HOUR function will return 10. You can use this function to return the hour value in a cell.

Objective

Value Returned by function

Aim to get the Hour value as Number

HOUR Function will return a numeric values from the input hour value.

HOUR Function: A Syntax:

=HOUR(hour_value)
  1. hour_value: It should be a valid excel hour value.

Important Notes About HOUR Function:

Decimal Values

Equivalent Hour Value in Excel

0.01

12:14 AM

0.02

12:29 AM

0.03

12:43 AM

0.04

12:57 AM

0.05

1:12 AM

0.06

1:26 AM

0.07

1:41 AM

0.08

1:55 AM

0.09

2:10 AM

0.10

2:24 AM

0.125

3:00 AM

0.15

3:36 AM

0.1667

4:00 AM

0.20

4:48 AM

0.25

6:00 AM

0.30

7:12 AM

0.3333

8:00 AM

0.375

9:00 AM

0.40

9:36 AM

0.50

12:00 PM (Noon)

0.55

1:12 PM

0.5833

2:00 PM

0.60

2:24 PM

0.625

3:00 PM

0.6667

4:00 PM

0.70

4:48 PM

0.75

6:00 PM

0.80

7:12 PM

0.8333

8:00 PM

0.875

9:00 PM

0.90

9:36 PM

0.9167

10:00 PM

0.95

11:24 PM

1.00

12:00 AM (Midnight)

From the above table, you can find the decimal values and equivalent hour values. The Decimal value should be lies between 0 to 1.

Example 1: Basic Example:

The below example will make you understand the HOUR Function easily.

Input Time

Formula Used

Final Result

Comments

10:45 AM

=HOUR(B3)

10

Returns 10 because the hour part is 10

5:30 PM

=HOUR(B4)

17

Returns 17 because 5 PM is represented as 17 in a 24-hour format

00:15

=HOUR(B5)

0

Returns 0, indicating midnight

23:59

=HOUR(B6)

23

Returns 23, indicating 11:59 PM

12:00 PM

=HOUR(B7)

12

Returns 12

Example 2: Return Hour Values from Date & Time Values:

If you sheet contains both date and time values in the cells, you can use the HOUR function to extract the numeric values by ignoring the date values from the input cell.

Input Date and Time

Formula Used

Final Result

Comments

03-08-2025 10:30

=HOUR(B3)

10

Returns 10 because the time is 10:30 AM.

25-12-2024 00:01

=HOUR(B4)

Returns 0, as midnight is hour 0.

Notes:

  • If the hour_value is not recognized by HOUR function then it will returns the #VALUE! error.
  • If the hour_value is out of given range and then the HOUR function will returns the #NUM! error.

That’s it. This tutorial is originally published on How to Use Excel HOUR Function?