MINUTE Function
MINUTE Function

MINUTE Function

Extracts the minute component from a valid Excel time value.

ExcelClash Team
PUBLISHED

Summary

The Excel MINUTE function returns the minute component of a time value as a whole number from 0 to 59.

MINUTE is useful when you need to break a time into parts, analyze timestamps, build minute-based logic, or group events by where they fall within the hour.

MINUTE is a small extraction function, but it helps when timing needs a little more precision than the hour alone can give. It is useful in schedules, logs, and checks where the workbook needs the minute component without carrying the full time value through every formula.

Purpose

Extract the minute value

Pulls the minute portion from a valid Excel time or date-time value.

Return Value

An integer from 0 to 59

Returns the minute of the hour as a whole number.

Syntax

=MINUTE(serial_number)

The argument is called serial_number because Excel stores times as decimal parts of a date value. In practice, you can pass a time, a date-time, a cell reference, or the result of another formula.

Arguments

  • serial_number - A valid Excel time or date-time value that contains the minute you want to extract.

MINUTE vs Related Time Functions

MINUTE is one of the core functions used to split a time into smaller parts.

Function Returns Use When Example
MINUTE Minute of the hour You need the minute part only =MINUTE(A1)
HOUR Hour of the day You need the hour part =HOUR(A1)
SECOND Second of the minute You need the second part =SECOND(A1)
TEXT(A1,"mm") Formatted minute text You need display formatting instead of a numeric result "45"

Use MINUTE when you need the numeric minute for logic or analysis. Use TEXT when you only need a formatted display value.

Using MINUTE

Microsoft documents that MINUTE accepts times entered as text strings, decimal numbers, or results from other formulas. For example, a time such as "6:45 PM", a decimal like 0.78125, or a formula result from TIMEVALUE() can all be used.

Microsoft also notes that time values are stored as part of a date value and represented by a decimal number. That means MINUTE can work on both pure times and full date-time values, as long as Excel recognizes the input as a valid time.

A common use is extracting the minute for grouping, filtering, or rule-based logic. For example, you might flag all entries in the first half of the hour, or build a helper column that shows only the minute component of a timestamp.

Example 1 - Extract the Minute from a Stored Time

The simplest use of MINUTE is to pull the minute number from a time value already placed in the sheet.

=MINUTE(B2)   // Returns 45

This is useful when you need only the minute part and do not care about the hour or second.

Check Answer
Challenge #1
Target: Sheet1!C2

In cell C2, return the minute from the time in B2.

Example 2 - Extract the Minute from Another Time

MINUTE is often used on timestamps already stored in logs, records, or imported data.

=MINUTE(B3)

If B3 contains 08:15:00, the result is 15. This makes the function useful for time-based grouping and analysis.

Check Answer
Challenge #2
Target: Sheet1!C3

In cell C3, return the minute from the time in B3.

Example 3 - Build a Minute-Based Logical Test

You can use MINUTE inside a condition to classify times within the hour.

=MINUTE(B4)>=30

This returns TRUE when the time falls in the second half of the hour and FALSE otherwise. It is a simple pattern for rules and alerts.

Check Answer
Challenge #3
Target: Sheet1!C4

In cell C4, test whether the minute in B4 is at least 30.

Example 4 - Turn the Result into a Label

Combine MINUTE with text when you want a display label instead of just the number.

=MINUTE(B5)&" mins"

This is useful for dashboards, summaries, or helper columns where a more readable label makes the result easier to scan.

Check Answer
Challenge #4
Target: Sheet1!C5

In cell C5, turn the minute result from B5 into a text label.

Conclusion Recap

MINUTE is useful when you only care about where a time falls inside the current hour. This lesson used it for simple extraction, timestamp checks, minute-based rules, and turning the result into an easy label for reports or dashboards.

The function stays straightforward because it always returns just one number from 0 to 59. If you need that number for logic, use MINUTE. If you only want the time to look a certain way, formatting is usually the better tool.

  • Summary: MINUTE returns the minute component of a time value.
  • Output: It returns a whole number from 0 to 59.
  • Common uses: Timestamp analysis, grouping, logical tests, and helper columns.
  • Input flexibility: It can work with valid time text, decimals, and formula results.
  • Display tip: Use TEXT for formatting and MINUTE for numeric logic.
  • Related functions: Use HOUR and SECOND to extract other time parts.
Tactical Arena
Share MINUTE Function!

Tell your friends about this post

Discussion

ExcelClash is an interactive platform designed to level up your Excel skills through real-world exercises and challenges. Sharpen your logic, solve real spreadsheet problems, and learn faster.

© 2026 ExcelClash, Inc. All rights reserved.