Inserting minutes and seconds into Excel

matjusm

New Member
Joined
Sep 29, 2010
Messages
32
This is probably one of the more stupid/simple questions to come up on these boards but I just can't figure it out.

I want to use a spreadsheet to track my jogging times, to be exact I want to insert the time for each lap, sum them up and then compare the result against a points system.

The problem is that I just can't quite figure out how to enter times in minutes and seconds into Excel. Say for example I want 2:15 to mean 2 minutes and 15 seconds. I went into Format Cell->Custom and there was a format setting for "mm:ss" which I thought would be just what I was looking for.
However upon formatting a cell into that format and inserting 2:15, it shows me 2:15:00 even though the format setting I have chosen shouldn't leave an option open for hours to be shown. Now I noticed that if I were to type in 0:2:15 then it would show up as 02:15 which is a bit closer to what I want but its still slightly annoying to type that extra superfluous "0:" in front of every time I want to enter.

So in short: what can I do to Excel to make it think that when I'm entering 2:15 into a cell, it stands for 2 minutes and 15 seconds and not something else?
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Perhaps something like this will help...

• Set the number format of the input cells to TEXT
• Enter times in minutes:seconds....eg 2:10
Assuming inputs go in A1:A10, sum those times with this formula
Code:
B1: =SUMPRODUCT(--("0:"&A1:A10))
• Format B1 as time (displaying hr:min:sec....13:30:55 (from the pick list)
Is that something you can work with?
 
Upvote 0
Perhaps something like this will help...

• Set the number format of the input cells to TEXT
• Enter times in minutes:seconds....eg 2:10
Assuming inputs go in A1:A10, sum those times with this formula
Code:
B1: =SUMPRODUCT(--("0:"&A1:A10))
• Format B1 as time (displaying hr:min:sec....13:30:55 (from the pick list)
Is that something you can work with?
Thanks!

Though its not quite the solution I was hoping for, this is one way of doing it so I'll go for that.
 
Upvote 0

Forum statistics

Threads
1,214,971
Messages
6,122,517
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top