Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Dividing a number into time to get a # per hour?

Status
Not open for further replies.

CTOROCK

Programmer
May 14, 2002
289
US
how would I get the average number per hour
if the time is 3:00 , meaning 3 hours and I want to divide that by 25, how would I get the number per hour?

thanks! "The greatest risk, is not taking one."
 
If you divide 3 hours by 25 you get hours per number, not numbers per hour... So I guess the answer to your question would be to take the reciprocal of your quotient.
 
Where are you getting 3:00 from?

If it is actually TIME, then 3:00 is in reality 3/24 or .125. So dividing 3:00 into 25 parts is 0:07:12 in [h]:mm:ss format

OR 3/25 = .12 hrs which is 7.2 minutes which is 7:12 -- SAME ANSWER VOLA! :)
Skip,
Skip@TheOfficeExperts.com
 
Ok, all kidding aside, 25 divided by 3 is 8 1/3, so if you have:
Code:
A1: 3:00
B1: 25
C1: =B1/(A1*24)
<--need to reformat as General or Number
Code:
Note that by entering
Code:
3:00
into A1, Excel automatically converts that to 3 hours. The internal representation for that is .125 as can be seen by reformatting the cell to General. The interpretation of that is 1/8 of a day.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top