Time calculators

Add Minutes Calculator

Updated Aug 3, 2026 By Jehan Wadia
Rate Formulas
Enter Your Durations
Accepted per line: HH:MM, HH:MM:SS, 1h30m, 1.5h, 45m, 30s, or a plain number (treated as minutes). Blank lines are skipped. Results update as you type.
Load Example:
Line-by-Line Parsing
0 valid entries
Total Duration
00:00:00
0 seconds
Total Minutes
0
Total Hours (decimal)
0
Total Seconds
0
Total Days (decimal)
0
0 minutes
Step-by-Step Solution
Entry Contributions & Running Total

Introduction

The Add Minutes Calculator adds and subtracts time for you. Type one duration per line, and it gives you the total in hours, minutes, and seconds. It works with clock times like 01:30 or 00:12:30, short forms like 1h15m, 45m, or 1.5h, and plain numbers like 90, which count as minutes.

To take time away, put a minus sign in front of a line, like -00:45. This is handy for lunch breaks, rest time, or any time you need to cut out. If you only ever remove time, the Subtract Time Calculator handles that job on its own.

The total updates as you type. You also get the answer in total minutes, hours, seconds, and days, plus a step-by-step breakdown that shows the math. Charts show how much each line adds or takes away, and how the total grows line by line.

Use it to add up work hours on a timesheet, video clip lengths, workout sets, meeting times, or any list of durations. If a line is typed wrong, the calculator marks it and keeps going with the rest. For related jobs, try the Add Time Calculator, the Hours and Minutes Calculator, or the Minutes Calculator.

How to use our Add Minutes Calculator

Type your times into the box, one per line, and the calculator adds them up. It shows your total in hours, minutes, and seconds, plus total minutes, hours, days, a line-by-line breakdown, and charts.

Durations box: Enter one time per line. You can use HH:MM (like 01:30), HH:MM:SS (like 00:12:30), 1h15m, 1.5h, 45m, 30s, or just a number like 90, which counts as minutes. Put a minus sign in front of a line, like -00:45, to subtract that time instead of adding it. Blank lines are skipped.

Load Example buttons: Click Timesheet, Video Editing, Training / Workout, Meeting Log, or Long Total (24h+) to fill the box with sample times. Use these to see how the format works, then edit them with your own numbers.

Calculate button: Click it to add your times. The total also updates on its own as you type, so this button just refreshes the answer.

Clear All Entries button: Click it to empty the box and start a new list.

Convert total to: Pick seconds, minutes, hours, days, or weeks to see your total shown in that unit. To turn a clock-style total into a payroll-friendly decimal, use the Time to Decimal Calculator.

Chart unit: Pick seconds, minutes, or hours to set the unit used in the two charts. The first chart shows each entry, and the second shows your running total.

Adding Minutes and Time Durations

Time does not add up like normal numbers. Minutes and seconds roll over at 60, not at 100. So 45 minutes plus 30 minutes is not 75 minutes on a clock — it is 1 hour and 15 minutes. Adding minutes means putting several time chunks together and carrying the extra into the next unit.

How Time Math Works

Time uses base 60. The easy way to add or subtract durations is to turn everything into one small unit first, do plain math, then change it back. That is exactly the trick this tool uses:

  • 1 minute = 60 seconds
  • 1 hour = 60 minutes = 3,600 seconds
  • 1 day = 24 hours = 86,400 seconds
  • 1 week = 7 days = 604,800 seconds

Example: 1h 15m + 45m. Change both to seconds (4,500 + 2,700 = 7,200). Then divide by 3,600 to get 2 hours flat. If you need the gap between two clock times instead of a list of durations, the Time Duration Calculator and the Time Difference Calculator do that directly.

Common Time Formats

People write durations in many ways, and they all mean the same thing:

  • HH:MM — like 01:30 (one hour, thirty minutes)
  • HH:MM:SS — like 00:12:30 (twelve and a half minutes)
  • Short units — like 2h15m, 45m, or 30s
  • Decimal hours — like 1.5h, which is 1 hour 30 minutes, not 1 hour 50
  • Plain numbers — usually read as minutes, so 90 means 1 hour 30 minutes

If your shifts are written in 24-hour style like 1745, the Military Time Calculator converts them before you add them up.

Adding vs. Subtracting Time

Many real jobs need both. A work shift adds hours but takes away a lunch break. A workout adds sets but takes out rest time. When you subtract more than you add, the total goes below zero. A negative total is not an error — it just means the time taken out was bigger than the time put in. For full shift math with clock-in and clock-out times, see the Time Card Calculator, the Work Hours Calculator, or the Shift Calculator.

Decimal Hours vs. Clock Hours

Payroll and billing often use decimal hours. To switch, divide the minutes by 60. So 8 hours 45 minutes becomes 8.75 hours. Do not write it as 8.45 — that is a common and costly mistake on timesheets. Once you have decimal hours, the Hourly to Salary Calculator and the Overtime Calculator turn them into pay.

Where People Add Minutes

  • Timesheets and payroll — total work hours minus breaks, then run the numbers through an Hourly Paycheck Calculator
  • Video and audio editing — adding clip lengths to find run time
  • Training and sports — total active time minus rest, alongside a Pace Calculator
  • Meetings and study — how many hours a week something eats up
  • Cooking and projects — stacking steps to find the finish time, or checking a Deadline Calculator
  • Billing clients — turning many small tasks into billable hours with an Hourly Rate Calculator
  • Reading and listening — stacking chapter lengths with the Reading Time Calculator or Audiobook Calculator

Tips to Avoid Mistakes

  • Keep one format if you can. Mixing 1.5h and 1:30 works, but it is easier to check your own work when the style matches.
  • Minutes and seconds in clock format must stay between 0 and 59.
  • Totals over 24 hours are fine. Durations keep counting up, unlike a clock that resets. To push a start time forward by a big block of hours, use the Add Hours Calculator.
  • Round only at the very end. Rounding each line first can push your total off by several minutes.
  • Working across regions? Check the Time Zone Calculator so meeting lengths line up with the right local clock.

Formulas used

Clock format to seconds
t = 3600H + 60M + S
Unit shorthand to seconds
t = \sum_{i} v_i \cdot k_i,\quad k \in \{86400_{d},\ 3600_{h},\ 60_{m},\ 1_{s}\}
Net total in seconds
T = A - S = \sum_{\text{added}} t_i - \sum_{\text{subtracted}} t_j
Hours, minutes, seconds breakdown
H = \left\lfloor \frac{|T|}{3600} \right\rfloor,\quad M = \left\lfloor \frac{|T| \bmod 3600}{60} \right\rfloor,\quad S_{\text{rem}} = |T| \bmod 60
Unit conversions of the total
T_{\text{min}} = \frac{T}{60},\quad T_{\text{h}} = \frac{T}{3600},\quad T_{\text{d}} = \frac{T}{86400},\quad T_{\text{wk}} = \frac{T}{604800}
Running (cumulative) total after entry n
R_n = \frac{1}{f}\sum_{i=1}^{n} s_i \cdot t_i,\quad s_i = \pm 1

Frequently asked questions

Why is one of my lines marked INVALID?

A line is marked invalid when the tool cannot read it. Common reasons:

  • Minutes or seconds over 59 in clock format, like 01:75
  • Extra words or symbols, like 1h30m break
  • Nothing after the sign, like a lone -

Invalid lines are skipped. Every good line still counts in the total, so you can fix the bad line and the answer updates right away.

Do I need to type a plus sign in front of a line?

No. Lines are added by default. The + is optional and only helps you see at a glance which lines add time. You only need a sign when you want to subtract, and that sign is the minus -.

Why does 2:30 mean 2 hours 30 minutes and not 2 minutes 30 seconds?

Clock format is read from the left, starting with hours. So 2:30 is 2 hours 30 minutes. If you mean 2 minutes 30 seconds, type 0:02:30 or 2m30s instead.

Can I use days in a line?

Yes. Short unit forms accept d for days, so 1d is 24 hours and 2d 6h works too. You can also see your total in days or weeks with the "Convert total to" menu.

Can I paste a list of times from a spreadsheet?

Yes. Copy a single column of times and paste it into the box. Each cell lands on its own line, which is exactly what the calculator wants. Blank rows are skipped, so gaps in your sheet are fine.

Can I put more than one time on the same line?

Only if it is one duration written in unit form, like 1h 15m 30s. Two separate times on one line, like 1:00 2:00, will be marked invalid. Put each duration on its own line, and use commas or spaces only inside a single unit-style entry.

How many lines can I add?

There is no set limit, so long lists like a full month of shifts are fine. The total and the step-by-step math use every valid line. The two charts show the first 40 entries to keep them readable.

Does the calculator save my list?

No. Nothing is stored. If you close or refresh the page, the box starts empty. Copy your list into a note or spreadsheet if you need to keep it.

Why is my total over 24 hours instead of starting again at zero?

Because you are adding durations, not clock times. A duration keeps counting up, so 30 hours stays 30:00:00. A wall clock resets at 24 hours, but a total of time worked or watched does not.

Can I use decimals like 1.25h or 0.5m?

Yes. Decimal amounts work with any unit. 1.25h is 1 hour 15 minutes, and 0.5m is 30 seconds. Remember that 1.5h means 1 hour 30 minutes, not 1 hour 50 minutes.

What is the difference between Total Minutes and the HH:MM:SS total?

They are the same amount shown two ways. The big HH:MM:SS total splits the time into hours, minutes, and seconds. Total Minutes shows the whole thing as one minute count. For example, 2 hours 30 minutes shows as 02:30:00 and as 150 min.

How do I round my total to the nearest quarter hour?

Look at the decimal hours tile, then round to the nearest .25. For example, 7.83 hours rounds to 7.75 hours (7:45). Round only once, at the end, so your total does not drift.

Can it tell me what time I will finish?

No. This tool adds up lengths of time, not clock times. Add your durations here first, then push a start time forward with the Add Time Calculator or the Add Hours Calculator.

Why did my total drop below zero?

Your minus lines add up to more than your plus lines. The tool shows the total in red with a minus sign. That is not a bug. Check that you did not subtract a break twice, or that a minus sign is not sitting on the wrong line.

Do the charts change my answer?

No. The charts only show the same numbers in picture form. The bar chart shows each entry, with added time in purple and subtracted time in red. The area chart shows the running total after each line, so you can spot the line where something went wrong.

Is 90 read as 90 minutes or 90 seconds?

A plain number is read as minutes, so 90 means 1 hour 30 minutes. If you mean 90 seconds, type 90s or 0:01:30.