#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default hours and minutes

If I have a spreadsheet that in column A= seconds. I want to take the
seconds in col a and in column b make minutes, then in column c, the minutes
to make hours, and then in column d, the hours to make days. I do not know
how to divide to get the correct answer in each of the columns.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,393
Default hours and minutes

Since there are 60 seconds in a minute, =A1/60 will convert seconds in A1 to
minutes. IF you just want to see whole minutes without fractions (e.g 75 sec
= 1.25 mins, but you want to see just 1) then use =ROUND(a1/60,0). But this
will round 90 secs to 2 mins, so if you want the answer to be 1 use
=INT(A1/60)
Min to hours: divide the hours answer by 60
Hrs to days: divide the hours answer by 24
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Pam Coleman" wrote in message
...
If I have a spreadsheet that in column A= seconds. I want to take the
seconds in col a and in column b make minutes, then in column c, the
minutes
to make hours, and then in column d, the hours to make days. I do not
know
how to divide to get the correct answer in each of the columns.



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default hours and minutes

If A1 contains Seconds, then
=a1/60 (in B1) would contain minutes
=b1/60 (in C1) would contain hours
=c1/24 (in D1) would contain days

Pam Coleman wrote:

If I have a spreadsheet that in column A= seconds. I want to take the
seconds in col a and in column b make minutes, then in column c, the minutes
to make hours, and then in column d, the hours to make days. I do not know
how to divide to get the correct answer in each of the columns.


--

Dave Peterson
  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,574
Default hours and minutes

In column B: =A1/60 will give you the minute equivalent.
In column C: =B1/60 will give you the hour equivalent
In column D: =C1/24 will give you the day equivalent

If A1 = 60 seconds, then B1 = 1, C1 = 1/60 of an hour, D1 = 1/(60)*(24) of a
day.

Dave
--
Brevity is the soul of wit.


"Pam Coleman" wrote:

If I have a spreadsheet that in column A= seconds. I want to take the
seconds in col a and in column b make minutes, then in column c, the minutes
to make hours, and then in column d, the hours to make days. I do not know
how to divide to get the correct answer in each of the columns.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 79
Default hours and minutes

I think you can do this:
A5 = 616565 (your seconds)
B5 = =INT((((A5/60)/60)/24)) (days)
C5 = =INT(((A5/60)/60))-(INT((((A5/60)/60)/24))*24) (hours)
D5 = =INT(MOD(A5/60;60)) (minutes)
E5 = =INT(MOD(A5;60)) (seconds)

Rodrigo Ferreira

"Pam Coleman" escreveu na mensagem
...
If I have a spreadsheet that in column A= seconds. I want to take the
seconds in col a and in column b make minutes, then in column c, the
minutes
to make hours, and then in column d, the hours to make days. I do not
know
how to divide to get the correct answer in each of the columns.





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default hours and minutes

how do I take the hours and make days then weeks then years.

Thanks,

"Bernard Liengme" wrote:

Since there are 60 seconds in a minute, =A1/60 will convert seconds in A1 to
minutes. IF you just want to see whole minutes without fractions (e.g 75 sec
= 1.25 mins, but you want to see just 1) then use =ROUND(a1/60,0). But this
will round 90 secs to 2 mins, so if you want the answer to be 1 use
=INT(A1/60)
Min to hours: divide the hours answer by 60
Hrs to days: divide the hours answer by 24
best wishes
--
Bernard V Liengme
www.stfx.ca/people/bliengme
remove caps from email

"Pam Coleman" wrote in message
...
If I have a spreadsheet that in column A= seconds. I want to take the
seconds in col a and in column b make minutes, then in column c, the
minutes
to make hours, and then in column d, the hours to make days. I do not
know
how to divide to get the correct answer in each of the columns.




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
Adding hours and minutes Patrick Excel Worksheet Functions 16 June 18th 08 09:24 PM
Calculating and Adding Hours, Minutes, and Seconds in a CALL LOG EmanJR Excel Worksheet Functions 1 August 3rd 06 03:47 PM
converting Days Hours & minutes into just minutes in excel Six Sigma Blackbelt Excel Discussion (Misc queries) 5 April 28th 06 09:45 PM
Need to convert hours and minutes to hours and tenths. MikeC Excel Discussion (Misc queries) 2 February 9th 06 06:22 PM
adding rows of hours and minutes to get a total Tipps Excel Worksheet Functions 1 November 4th 05 07:03 PM


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