Date & Time Excel Formula

MINUTE Formula in Excel: Examples, Syntax, Tips

Learn the MINUTE formula in Excel with a beginner-friendly explanation, syntax, copy-paste examples, step-by-step instructions, and common mistakes.

Copy-paste examplesBeginner friendlyCommon mistakesStep-by-step

💡 Ideas for You

Helpful learning resources for MINUTE formula.

4 useful links
📚 Step-by-step booksBeginner-friendly learning resources from Create & Learn.📘 Date formula guidesResources for due dates, periods, schedules, and time calculations.🧮 Formula cheat sheetsQuick references for common spreadsheet formulas.📊 Reporting guidesResources for turning formula results into useful reports.

Quick answer

The MINUTE formula returns the minute from a time value.

Starting formula
=MINUTE(A2)

Syntax

Use this syntax as the pattern, then replace the sample arguments with your own cells, ranges, and criteria.

Syntax
=MINUTE(serial_number)

When to use it

Date and time formulas are useful for schedules, invoices, project trackers, HR records, subscription reports, and monthly dashboards. They help convert calendar logic into repeatable calculations.

  • Calculate days between two dates
  • Find the end of a month
  • Count working days excluding weekends
  • Create due dates and renewal dates

Example worksheet layout

Test the formula in a small worksheet first. This makes it easier to confirm the result before copying the formula down hundreds of rows.

Column or rangeWhat it represents
AStart date or source date
BEnd date, months, or working days
CDate or duration result

Copy-paste examples

These examples move from simple to more practical versions. Start with the beginner examples, confirm the result, then adapt the intermediate and advanced versions.

Beginner

Basic MINUTE example

Example formula
=MINUTE(A2)

Confirm Excel recognizes the source value as a real date or time.

Beginner

Return blank for missing dates

Example formula
=IF(A2="","",MINUTE(A2))

Prevents unfinished rows from showing default dates or errors.

Intermediate

Build a due-date rule

Example formula
=IF(TODAY()>A2,"Overdue","On time")

Useful for invoices, tasks, renewals, and project trackers.

Intermediate

Calculate by month

Example formula
=EOMONTH(A2,0)

Group activity by month-end dates for reporting.

Advanced

Exclude holidays

Example formula
=NETWORKDAYS(A2,B2,$H$2:$H$20)

Use a separate holiday list for business-day calculations.

Advanced

Create a report label

Example formula
=TEXT(A2,"mmm yyyy")

Convert dates into clean month labels for dashboards.

How to use it step by step

  1. Put your raw data in clear columns with headers such as Amount, Date, Status, Region, or Customer.
  2. Paste the starting formula into the first result cell, usually row 2.
  3. Replace sample references such as A2, B2, or $F$2:$F$100 with the cells in your own worksheet.
  4. Check the result on a few rows where you already know the expected answer.
  5. Copy the formula down only after the first row returns the right result.

Common mistakes and fixes

  • The date is stored as text instead of a real Excel date.
  • The result is correct but the cell is formatted as a number or date incorrectly.
  • Holiday ranges are not locked with dollar signs before copying down.
  • Test the formula on a few known rows before using it across a full report.

Beginner tips

  • Use a small sample first so you can see exactly how the MINUTE formula behaves.
  • Convert your source range into an Excel Table when the data will grow over time.
  • Add a short note near important formulas so future users know what each input represents.

Related formula examples