Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default How do I show amount of time in minutes and seconds?

If I enter in 1:30 I want it to display 1:30 not 1:30 AM. (1 hour and 30
minutes)
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 964
Default How do I show amount of time in minutes and seconds?

If you mean in the formula bar then you need to change your regional setting
in the control panel to 24 hours (HH:mm)
if you meant in the cell itself just use hh:mm or [hh]:mm as format

--


Regards,


Peo Sjoblom

"TitanG" wrote in message
...
If I enter in 1:30 I want it to display 1:30 not 1:30 AM. (1 hour and 30
minutes)



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default How do I show amount of time in minutes and seconds?

Sorry, I didn't explain that correctly . . .
I have a recording which is 1 minute and 30 seconds that I want to display
as 1:30 (minutes and seconds) or if I have a 1 minute recording and I enter 1
I would need it to display 1:00.

Elsewhere I want to display the amount in seconds only. so in the example
above there would be
90
60

"Peo Sjoblom" wrote:

If you mean in the formula bar then you need to change your regional setting
in the control panel to 24 hours (HH:mm)
if you meant in the cell itself just use hh:mm or [hh]:mm as format

--


Regards,


Peo Sjoblom

"TitanG" wrote in message
...
If I enter in 1:30 I want it to display 1:30 not 1:30 AM. (1 hour and 30
minutes)




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 964
Default How do I show amount of time in minutes and seconds?

To convert 1 to 1:00 in minutes and seconds upon entering it you need to
either use an event macro
or an extra cell with a formula. To convert 90 (seconds) entered in one cell
to 1:30
in another you can use


=A1/86400

and format as mm:ss

where A1 holds 90

--


Regards,


Peo Sjoblom

"TitanG" wrote in message
...
Sorry, I didn't explain that correctly . . .
I have a recording which is 1 minute and 30 seconds that I want to display
as 1:30 (minutes and seconds) or if I have a 1 minute recording and I
enter 1
I would need it to display 1:00.

Elsewhere I want to display the amount in seconds only. so in the example
above there would be
90
60

"Peo Sjoblom" wrote:

If you mean in the formula bar then you need to change your regional
setting
in the control panel to 24 hours (HH:mm)
if you meant in the cell itself just use hh:mm or [hh]:mm as format

--


Regards,


Peo Sjoblom

"TitanG" wrote in message
...
If I enter in 1:30 I want it to display 1:30 not 1:30 AM. (1 hour and
30
minutes)






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default How do I show amount of time in minutes and seconds?

To have an entry of 1:30 displayed as such, use a format of h:mm.

However, Excel will assume this is hours and minutes, not minutes and
seconds. If you're not doing any calculations with it, it won't matter. If
you are, there are several workarounds. Post back if you need any.

Regards,
Fred.

"TitanG" wrote in message
...
If I enter in 1:30 I want it to display 1:30 not 1:30 AM. (1 hour and 30
minutes)




  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7
Default How do I show amount of time in minutes and seconds?

Here is what I ended up with
TEXT(A1/60,"[ss]")

When A1 holds 1:00 it returns 60
When A1 holds 1:30 it returns 90
When A1 holds 0:30 it returns 30

Thanks for the help

"Peo Sjoblom" wrote:

To convert 1 to 1:00 in minutes and seconds upon entering it you need to
either use an event macro
or an extra cell with a formula. To convert 90 (seconds) entered in one cell
to 1:30
in another you can use


=A1/86400

and format as mm:ss

where A1 holds 90

--


Regards,


Peo Sjoblom

"TitanG" wrote in message
...
Sorry, I didn't explain that correctly . . .
I have a recording which is 1 minute and 30 seconds that I want to display
as 1:30 (minutes and seconds) or if I have a 1 minute recording and I
enter 1
I would need it to display 1:00.

Elsewhere I want to display the amount in seconds only. so in the example
above there would be
90
60

"Peo Sjoblom" wrote:

If you mean in the formula bar then you need to change your regional
setting
in the control panel to 24 hours (HH:mm)
if you meant in the cell itself just use hh:mm or [hh]:mm as format

--


Regards,


Peo Sjoblom

"TitanG" wrote in message
...
If I enter in 1:30 I want it to display 1:30 not 1:30 AM. (1 hour and
30
minutes)






  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default How do I show amount of time in minutes and seconds?

As you don't want to do any calculations with this number, you can get the
same results, and avoid an intermediary cell, by using a format of [mm]

Regards,
Fred.

"TitanG" wrote in message
...
Here is what I ended up with
TEXT(A1/60,"[ss]")

When A1 holds 1:00 it returns 60
When A1 holds 1:30 it returns 90
When A1 holds 0:30 it returns 30

Thanks for the help

"Peo Sjoblom" wrote:

To convert 1 to 1:00 in minutes and seconds upon entering it you need to
either use an event macro
or an extra cell with a formula. To convert 90 (seconds) entered in one
cell
to 1:30
in another you can use


=A1/86400

and format as mm:ss

where A1 holds 90

--


Regards,


Peo Sjoblom

"TitanG" wrote in message
...
Sorry, I didn't explain that correctly . . .
I have a recording which is 1 minute and 30 seconds that I want to
display
as 1:30 (minutes and seconds) or if I have a 1 minute recording and I
enter 1
I would need it to display 1:00.

Elsewhere I want to display the amount in seconds only. so in the
example
above there would be
90
60

"Peo Sjoblom" wrote:

If you mean in the formula bar then you need to change your regional
setting
in the control panel to 24 hours (HH:mm)
if you meant in the cell itself just use hh:mm or [hh]:mm as format

--


Regards,


Peo Sjoblom

"TitanG" wrote in message
...
If I enter in 1:30 I want it to display 1:30 not 1:30 AM. (1 hour
and
30
minutes)







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
How do I change a minutes and seconds as a 2400 time to seconds? NickBrown419 Excel Worksheet Functions 1 August 10th 08 09:12 PM
how can I add time that I entered in only minutes and seconds greg Excel Discussion (Misc queries) 3 October 24th 07 08:30 PM
time in minutes and seconds and .00 adam11m Excel Worksheet Functions 2 July 24th 07 06:53 AM
Time with minutes and seconds Mark Foley Excel Discussion (Misc queries) 3 October 26th 06 10:47 PM
Convert "Time Interval" in "hours : minutes : seconds" to seconds Ianukotnorth New Users to Excel 7 May 8th 05 08:11 PM


All times are GMT +1. The time now is 04:16 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"