MINUTE

    Date & Time

    Returns the minute component of a time value (0-59).

    Translations
    EnglishMINUTE
    FrenchMINUTE
    SpanishMINUTO
    GermanMINUTE
    ItalianMINUTO
    PortugueseMINUTO
    DutchMINUUT
    PolishMINUTA
    RussianМИНУТЫ
    TurkishDAKİKA
    CzechMINUTA
    HungarianPERC
    SwedishMINUT
    DanishMINUT
    FinnishMINUUTIT
    Syntax
    MINUTE(serial_number)

    Arguments

    • serial_numberTime value or cell reference
    Examples
    =MINUTE("14:30")
    30

    Minutes from time

    =MINUTE(NOW())
    Current minute

    Minute from current time

    =MINUTE(A1)
    Minute from cell

    Extracts minute component

    Tips & Best Practices
    • Returns 0-59
    • Works with datetime values
    • Use TIME to reconstruct time
    Common Mistakes
    • Applying MINUTE to a plain date with no time component, which returns 0 correctly but can be confusing if you expected a real minute value
    • Assuming MINUTE accounts for the hour when calculating elapsed time - it only extracts the minutes component of a single value, it doesn't calculate a duration
    • Using MINUTE on a text string that looks like a time rather than an actual time value, which returns a #VALUE! error
    Related Functions
    HOURExtracts the hour component instead of the minutes, from the same kind of time value.
    SECONDExtracts the seconds component, completing the hour/minute/second trio.
    TIMEBuilds a time value from separate hour, minute, and second numbers, the reverse operation of MINUTE.
    Frequently Asked Questions

    Why does MINUTE return 0 for some of my cells?

    Those cells probably have no time component, just a date at midnight, which has 0 minutes by definition.

    Can MINUTE calculate elapsed minutes between two times?

    Not directly - it only extracts the minute component of a single value. For elapsed time, subtract the two time values and format the result, or multiply the difference by 1440 to get total minutes.

    Why does MINUTE return a #VALUE! error?

    The source cell is probably text that looks like a time rather than an actual time value - try TIMEVALUE to convert it first.

    Need to translate a formula using MINUTE?

    Use our translator to convert your complete formula