Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 360
Default Format cells for elapsed time in mmm:ss?

I am trying to chart daily telephone hold times that are measured in minutes
and seconds (mm:ss) and then a cumulative sum for the day in hundreds of
minutes and seconds (mmm:ss).
I've tried using the custom number options, but they all seem to default the
cell entry to a format I do not want. It seems I have to create my own
formula, but haven't had success with that either. Any suggestions?

(Also, if for the sake of easier data entry could be set up as mmm.ss that
would be wonderful.)
Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 3,440
Default Format cells for elapsed time in mmm:ss?

Format as [m]:ss

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Janis" wrote in message ...
|I am trying to chart daily telephone hold times that are measured in minutes
| and seconds (mm:ss) and then a cumulative sum for the day in hundreds of
| minutes and seconds (mmm:ss).
| I've tried using the custom number options, but they all seem to default the
| cell entry to a format I do not want. It seems I have to create my own
| formula, but haven't had success with that either. Any suggestions?
|
| (Also, if for the sake of easier data entry could be set up as mmm.ss that
| would be wonderful.)
| Thanks!


  #3   Report Post  
Posted to microsoft.public.excel.misc
dk_ dk_ is offline
external usenet poster
 
Posts: 70
Default Format cells for elapsed time in mmm:ss?

I think... [mm]:ss.00

-Dennis


In article ,
Janis wrote:

I am trying to chart daily telephone hold times that are measured in minutes
and seconds (mm:ss) and then a cumulative sum for the day in hundreds of
minutes and seconds (mmm:ss).
I've tried using the custom number options, but they all seem to default the
cell entry to a format I do not want. It seems I have to create my own
formula, but haven't had success with that either. Any suggestions?

(Also, if for the sake of easier data entry could be set up as mmm.ss that
would be wonderful.)
Thanks!




--
Dennis Kessler
http://www.denniskessler.com/acupuncture
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 618
Default Format cells for elapsed time in mmm:ss?

Have you tried [m]:ss ?

If you want to put the data in as mmm.ss, then use a helper column
=TIME(0,INT(A1),100*MOD(A1,1))
--
David Biddulph

"Janis" wrote in message
...
I am trying to chart daily telephone hold times that are measured in
minutes
and seconds (mm:ss) and then a cumulative sum for the day in hundreds of
minutes and seconds (mmm:ss).
I've tried using the custom number options, but they all seem to default
the
cell entry to a format I do not want. It seems I have to create my own
formula, but haven't had success with that either. Any suggestions?

(Also, if for the sake of easier data entry could be set up as mmm.ss that
would be wonderful.)
Thanks!



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 360
Default Format cells for elapsed time in mmm:ss?

Thank you for your reply David.
Could you please tell me where I enter the formula the 'helper column'? In
the formula bar or in the custom cell options?




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 360
Default Format cells for elapsed time in mmm:ss?

I have tried [m]:ss already and many other combinations but still am not
getting my desired result. Either the value in the cell changes or the units
of measure are not correct.

For example, assume I want a cell to show 13:13 for 13 minutes and 13
seconds. When I change the custom format for the cell to:
[m]:ss
[mm]:ss
[m]:ss.0
[mm]:ss.0
the result in all cases becomes 793:00 (presumably, 13min x 60sec =780 sec +
13sec = 793sec).

When I use h:mm, the displayed value becomes 2:53.

mm:ss and mm:ss.0 produce 13:00 and 13:00.0 respectively.

[h]:mm results in 13:13, and [h]:mm:ss and h:mm:ss provide 13:13:00,
however my concern is that the units of time are incorrect for my purposes.

The only hint to a solution I have found comes when entering a value over 24
minutes. (Perhaps the system is set to assume a 24 hour cycle?)
For example, 24 minutes and 51 seconds becomes
hh:mm 0:51
hh:mm:ss 0:51:00
mm:ss 51:00
mm:ss.0 51:00.0
[h]:mm:ss . 24:51:00
[mm]:ss.0 1491:00.0
[h]:mm 24:51

Again here as above, [h]:mm appears the way I want it to and I *suppose* I
could just use that format, however my concern is that when I want to
manipulate the data into various charts and graphs, that the cells will not
calculate correctly based on their assigned units of time.


Any chance anyone has any other insights?




"Niek Otten" wrote:

Format as [m]:ss

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Janis" wrote in message ...
|I am trying to chart daily telephone hold times that are measured in minutes
| and seconds (mm:ss) and then a cumulative sum for the day in hundreds of
| minutes and seconds (mmm:ss).
| I've tried using the custom number options, but they all seem to default the
| cell entry to a format I do not want. It seems I have to create my own
| formula, but haven't had success with that either. Any suggestions?
|
| (Also, if for the sake of easier data entry could be set up as mmm.ss that
| would be wonderful.)
| Thanks!



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 618
Default Format cells for elapsed time in mmm:ss?

One of the difficulties is that Excel is more inclined to believe that you
wanted hours & minutes than minutes & seconds. You may therefore need to
enter your 13:13 as 0:13:13. If, of course, you've already got a heap of
data in there which is a factor of 60 too large because Excel has treated it
as hours and minutes, then you could put the number 60 into a spare cell
somewhere, then select it, copy, then select your range of times & use Edit/
Paste Special/ Divide.
--
David Biddulph

"Janis" wrote in message
...
I have tried [m]:ss already and many other combinations but still am not
getting my desired result. Either the value in the cell changes or the
units
of measure are not correct.

For example, assume I want a cell to show 13:13 for 13 minutes and 13
seconds. When I change the custom format for the cell to:
[m]:ss
[mm]:ss
[m]:ss.0
[mm]:ss.0
the result in all cases becomes 793:00 (presumably, 13min x 60sec =780 sec
+
13sec = 793sec).

When I use h:mm, the displayed value becomes 2:53.

mm:ss and mm:ss.0 produce 13:00 and 13:00.0 respectively.

[h]:mm results in 13:13, and [h]:mm:ss and h:mm:ss provide 13:13:00,
however my concern is that the units of time are incorrect for my
purposes.

The only hint to a solution I have found comes when entering a value over
24
minutes. (Perhaps the system is set to assume a 24 hour cycle?)
For example, 24 minutes and 51 seconds becomes
hh:mm 0:51
hh:mm:ss 0:51:00
mm:ss 51:00
mm:ss.0 51:00.0
[h]:mm:ss . 24:51:00
[mm]:ss.0 1491:00.0
[h]:mm 24:51

Again here as above, [h]:mm appears the way I want it to and I *suppose* I
could just use that format, however my concern is that when I want to
manipulate the data into various charts and graphs, that the cells will
not
calculate correctly based on their assigned units of time.


Any chance anyone has any other insights?




"Niek Otten" wrote:

Format as [m]:ss

--
Kind regards,

Niek Otten
Microsoft MVP - Excel

"Janis" wrote in message
...
|I am trying to chart daily telephone hold times that are measured in
minutes
| and seconds (mm:ss) and then a cumulative sum for the day in hundreds
of
| minutes and seconds (mmm:ss).
| I've tried using the custom number options, but they all seem to
default the
| cell entry to a format I do not want. It seems I have to create my own
| formula, but haven't had success with that either. Any suggestions?
|
| (Also, if for the sake of easier data entry could be set up as mmm.ss
that
| would be wonderful.)
| Thanks!





  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 618
Default Format cells for elapsed time in mmm:ss?

If your "times" in mm.ss format (with a decimal point instead of a colon)
are in column A, then put =TIME(0,INT(A1),100*MOD(A1,1)) in B1, then copy
that cell as far as you need down column B (& format B as [m]:ss).
--
David Biddulph

"Janis" wrote in message
...
Thank you for your reply David.
Could you please tell me where I enter the formula the 'helper column'? In
the formula bar or in the custom cell options?




  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 360
Default Format cells for elapsed time in mmm:ss?

Thanks for both of your suggestions David - I'll give it a shot!

"David Biddulph" wrote:

If your "times" in mm.ss format (with a decimal point instead of a colon)
are in column A, then put =TIME(0,INT(A1),100*MOD(A1,1)) in B1, then copy
that cell as far as you need down column B (& format B as [m]:ss).
--
David Biddulph

"Janis" wrote in message
...
Thank you for your reply David.
Could you please tell me where I enter the formula the 'helper column'? In
the formula bar or in the custom cell options?





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Grand total time between two total cells Gwynn Excel Discussion (Misc queries) 4 May 9th 06 09:00 PM
Combine Date & Time Cells KrunoG Excel Discussion (Misc queries) 0 January 31st 06 08:08 PM
Combine Date & Time Cells Bob Phillips Excel Discussion (Misc queries) 0 January 31st 06 07:04 PM
Excel should format time down to the hundredth/sec. John Krick Excel Discussion (Misc queries) 3 November 28th 05 09:23 PM
Adding time damezumari Excel Discussion (Misc queries) 2 June 20th 05 08:35 PM


All times are GMT +1. The time now is 09:23 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"