Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Time calculus in Excel 2000

Greetings. I have recently been handed a project dealing with process times.
I have one set of numbers as seconds (ss.ssssssss) and one as a decimal
version of minutes (.91 m). What process do I need to know to convert these
numbers into a workable format. I'm hoping to have them as mm:ss.ss and then
doing basic math with the results. Thanks in advacne.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,805
Default Time calculus in Excel 2000

See http://www.cpearson.com/excel/datetime.htm

Let us know if you still need support.

"First Aid Computing" wrote:

Greetings. I have recently been handed a project dealing with process times.
I have one set of numbers as seconds (ss.ssssssss) and one as a decimal
version of minutes (.91 m). What process do I need to know to convert these
numbers into a workable format. I'm hoping to have them as mm:ss.ss and then
doing basic math with the results. Thanks in advacne.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,934
Default Time calculus in Excel 2000

In Excel, Time is the fraction of a day that has passed for the given time
(for example, 3:00 AM is 3/24 (or 0.125) of a 24-hour day.

To convert seconds (assumed to be in A1), use this... =A1/86400

To convert minutes (assumed to be in B1), use this... ==B1/1440

Custom Format the cells using this pattern... mm.ss.00 in the Type field.

Note: The 86400 comes from multiplying 24 (hours in a day) times 60 (minutes
in an hour) * 60 (seconds in a minute); the 1440 comes from multiplying 24
(hours in a day) times 60 (minutes in an hour).

--
Rick (MVP - Excel)


"Sheeloo" <="to" & CHAR(95) & "sheeloo" & CHAR(64) & "hotmail.com" wrote in
message ...
See http://www.cpearson.com/excel/datetime.htm

Let us know if you still need support.

"First Aid Computing" wrote:

Greetings. I have recently been handed a project dealing with process
times.
I have one set of numbers as seconds (ss.ssssssss) and one as a decimal
version of minutes (.91 m). What process do I need to know to convert
these
numbers into a workable format. I'm hoping to have them as mm:ss.ss and
then
doing basic math with the results. Thanks in advacne.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,934
Default Time calculus in Excel 2000

Sorry... I meant to post my message to the OP.

--
Rick (MVP - Excel)


"Rick Rothstein" wrote in message
...
In Excel, Time is the fraction of a day that has passed for the given time
(for example, 3:00 AM is 3/24 (or 0.125) of a 24-hour day.

To convert seconds (assumed to be in A1), use this... =A1/86400

To convert minutes (assumed to be in B1), use this... ==B1/1440

Custom Format the cells using this pattern... mm.ss.00 in the Type field.

Note: The 86400 comes from multiplying 24 (hours in a day) times 60
(minutes in an hour) * 60 (seconds in a minute); the 1440 comes from
multiplying 24 (hours in a day) times 60 (minutes in an hour).

--
Rick (MVP - Excel)


"Sheeloo" <="to" & CHAR(95) & "sheeloo" & CHAR(64) & "hotmail.com" wrote
in message ...
See http://www.cpearson.com/excel/datetime.htm

Let us know if you still need support.

"First Aid Computing" wrote:

Greetings. I have recently been handed a project dealing with process
times.
I have one set of numbers as seconds (ss.ssssssss) and one as a decimal
version of minutes (.91 m). What process do I need to know to convert
these
numbers into a workable format. I'm hoping to have them as mm:ss.ss and
then
doing basic math with the results. Thanks in advacne.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5,934
Default Time calculus in Excel 2000

In Excel, Time is the fraction of a day that has passed for the given time
(for example, 3:00 AM is 3/24 (or 0.125) of a 24-hour day.

To convert seconds (assumed to be in A1), use this... =A1/86400

To convert minutes (assumed to be in B1), use this... ==B1/1440

Custom Format the cells using this pattern... mm.ss.00 in the Type field.

Note: The 86400 comes from multiplying 24 (hours in a day) times 60 (minutes
in an hour) * 60 (seconds in a minute); the 1440 comes from multiplying 24
(hours in a day) times 60 (minutes in an hour).

--
Rick (MVP - Excel)


"First Aid Computing" <First Aid wrote
in message ...
Greetings. I have recently been handed a project dealing with process
times.
I have one set of numbers as seconds (ss.ssssssss) and one as a decimal
version of minutes (.91 m). What process do I need to know to convert
these
numbers into a workable format. I'm hoping to have them as mm:ss.ss and
then
doing basic math with the results. Thanks in advacne.




  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 18
Default Time calculus in Excel 2000

This works well. Now to figure out how to have it display negative seconds
as - instead of ############.

"Rick Rothstein" wrote:

In Excel, Time is the fraction of a day that has passed for the given time
(for example, 3:00 AM is 3/24 (or 0.125) of a 24-hour day.

To convert seconds (assumed to be in A1), use this... =A1/86400

To convert minutes (assumed to be in B1), use this... ==B1/1440

Custom Format the cells using this pattern... mm.ss.00 in the Type field.

Note: The 86400 comes from multiplying 24 (hours in a day) times 60 (minutes
in an hour) * 60 (seconds in a minute); the 1440 comes from multiplying 24
(hours in a day) times 60 (minutes in an hour).

--
Rick (MVP - Excel)


"First Aid Computing" <First Aid wrote
in message ...
Greetings. I have recently been handed a project dealing with process
times.
I have one set of numbers as seconds (ss.ssssssss) and one as a decimal
version of minutes (.91 m). What process do I need to know to convert
these
numbers into a workable format. I'm hoping to have them as mm:ss.ss and
then
doing basic math with the results. Thanks in advacne.



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Time calculus in Excel 2000

Tools/ Options/ Calculation: 1904 date system
but beware if you need to transfer data to and fro between 1900 and 1904
date systems.
--
David Biddulph

"First Aid Computing" wrote in
message ...
This works well. Now to figure out how to have it display negative
seconds
as - instead of ############.

"Rick Rothstein" wrote:

In Excel, Time is the fraction of a day that has passed for the given
time
(for example, 3:00 AM is 3/24 (or 0.125) of a 24-hour day.

To convert seconds (assumed to be in A1), use this... =A1/86400

To convert minutes (assumed to be in B1), use this... ==B1/1440

Custom Format the cells using this pattern... mm.ss.00 in the Type field.

Note: The 86400 comes from multiplying 24 (hours in a day) times 60
(minutes
in an hour) * 60 (seconds in a minute); the 1440 comes from multiplying
24
(hours in a day) times 60 (minutes in an hour).

--
Rick (MVP - Excel)


"First Aid Computing" <First Aid
wrote
in message ...
Greetings. I have recently been handed a project dealing with process
times.
I have one set of numbers as seconds (ss.ssssssss) and one as a decimal
version of minutes (.91 m). What process do I need to know to convert
these
numbers into a workable format. I'm hoping to have them as mm:ss.ss
and
then
doing basic math with the results. Thanks in advacne.





  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 18
Default Time calculus in Excel 2000

Afraid that the 1904 seems to do nothing. I just want to subtract two time
amounts and have it display a negative and the time. Eg. 25.3s - 26.3s =
-1.0s. Right now it shows ############ or if I reformat to general,
-1.15741-05.

"David Biddulph" wrote:

Tools/ Options/ Calculation: 1904 date system
but beware if you need to transfer data to and fro between 1900 and 1904
date systems.
--
David Biddulph

"First Aid Computing" wrote in
message ...
This works well. Now to figure out how to have it display negative
seconds
as - instead of ############.

"Rick Rothstein" wrote:

In Excel, Time is the fraction of a day that has passed for the given
time
(for example, 3:00 AM is 3/24 (or 0.125) of a 24-hour day.

To convert seconds (assumed to be in A1), use this... =A1/86400

To convert minutes (assumed to be in B1), use this... ==B1/1440

Custom Format the cells using this pattern... mm.ss.00 in the Type field.

Note: The 86400 comes from multiplying 24 (hours in a day) times 60
(minutes
in an hour) * 60 (seconds in a minute); the 1440 comes from multiplying
24
(hours in a day) times 60 (minutes in an hour).

--
Rick (MVP - Excel)


"First Aid Computing" <First Aid
wrote
in message ...
Greetings. I have recently been handed a project dealing with process
times.
I have one set of numbers as seconds (ss.ssssssss) and one as a decimal
version of minutes (.91 m). What process do I need to know to convert
these
numbers into a workable format. I'm hoping to have them as mm:ss.ss
and
then
doing basic math with the results. Thanks in advacne.





  #9   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Time calculus in Excel 2000

I'd try it once more.

First Aid Computing wrote:

Afraid that the 1904 seems to do nothing. I just want to subtract two time
amounts and have it display a negative and the time. Eg. 25.3s - 26.3s =
-1.0s. Right now it shows ############ or if I reformat to general,
-1.15741-05.

"David Biddulph" wrote:

Tools/ Options/ Calculation: 1904 date system
but beware if you need to transfer data to and fro between 1900 and 1904
date systems.
--
David Biddulph

"First Aid Computing" wrote in
message ...
This works well. Now to figure out how to have it display negative
seconds
as - instead of ############.

"Rick Rothstein" wrote:

In Excel, Time is the fraction of a day that has passed for the given
time
(for example, 3:00 AM is 3/24 (or 0.125) of a 24-hour day.

To convert seconds (assumed to be in A1), use this... =A1/86400

To convert minutes (assumed to be in B1), use this... ==B1/1440

Custom Format the cells using this pattern... mm.ss.00 in the Type field.

Note: The 86400 comes from multiplying 24 (hours in a day) times 60
(minutes
in an hour) * 60 (seconds in a minute); the 1440 comes from multiplying
24
(hours in a day) times 60 (minutes in an hour).

--
Rick (MVP - Excel)


"First Aid Computing" <First Aid
wrote
in message ...
Greetings. I have recently been handed a project dealing with process
times.
I have one set of numbers as seconds (ss.ssssssss) and one as a decimal
version of minutes (.91 m). What process do I need to know to convert
these
numbers into a workable format. I'm hoping to have them as mm:ss.ss
and
then
doing basic math with the results. Thanks in advacne.






--

Dave Peterson
  #10   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 18
Default Time calculus in Excel 2000

Well, I'll be horn-swaggled. It decided to work tonight. It didn't at
first, so I changed the number format then changed it back and it worked on
the entire sheet now. Thank you very much.

"Dave Peterson" wrote:

I'd try it once more.

First Aid Computing wrote:

Afraid that the 1904 seems to do nothing. I just want to subtract two time
amounts and have it display a negative and the time. Eg. 25.3s - 26.3s =
-1.0s. Right now it shows ############ or if I reformat to general,
-1.15741-05.

"David Biddulph" wrote:

Tools/ Options/ Calculation: 1904 date system
but beware if you need to transfer data to and fro between 1900 and 1904
date systems.
--
David Biddulph

"First Aid Computing" wrote in
message ...
This works well. Now to figure out how to have it display negative
seconds
as - instead of ############.

"Rick Rothstein" wrote:

In Excel, Time is the fraction of a day that has passed for the given
time
(for example, 3:00 AM is 3/24 (or 0.125) of a 24-hour day.

To convert seconds (assumed to be in A1), use this... =A1/86400

To convert minutes (assumed to be in B1), use this... ==B1/1440

Custom Format the cells using this pattern... mm.ss.00 in the Type field.

Note: The 86400 comes from multiplying 24 (hours in a day) times 60
(minutes
in an hour) * 60 (seconds in a minute); the 1440 comes from multiplying
24
(hours in a day) times 60 (minutes in an hour).

--
Rick (MVP - Excel)


"First Aid Computing" <First Aid
wrote
in message ...
Greetings. I have recently been handed a project dealing with process
times.
I have one set of numbers as seconds (ss.ssssssss) and one as a decimal
version of minutes (.91 m). What process do I need to know to convert
these
numbers into a workable format. I'm hoping to have them as mm:ss.ss
and
then
doing basic math with the results. Thanks in advacne.






--

Dave Peterson

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
calculus kazbeau Excel Discussion (Misc queries) 3 December 14th 06 01:00 AM
How to do integral calculus in Excel spreadsheet? windtalker Excel Worksheet Functions 2 September 3rd 06 07:11 AM
Basic Propositional Calculus - Sources for Beginners mikebispham Excel Discussion (Misc queries) 0 February 9th 06 03:37 PM
You should design a way of doing algebra calculus on a computer Adrian Excel Worksheet Functions 0 October 16th 05 09:37 PM
Calculating tvl time in Excel 2000 Rev.9.2720 Brandi Excel Worksheet Functions 5 January 27th 05 09:15 PM


All times are GMT +1. The time now is 10:42 PM.

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

About Us

"It's about Microsoft Excel"