Time to miles per hour

B

Bruce Sinclair

I have a spreadsheet that holds times for various biking trips. One column
has the overall time, formatted for time (e.g.- 5:48:00). The next column
has the distance in miles. The third column has a formula that is
Time/distance. I get the time it takes to travel a mile. How do I convert
that to miles per hour? Thanks

...and how many times can you travel that mile in an hour ? :)


Bruce

----------------------------------------
I believe you find life such a problem because you think there are the good
people and the bad people. You're wrong, of course. There are, always and
only, the bad people, but some of them are on opposite sides.

Lord Vetinari in Guards ! Guards ! - Terry Pratchett

Caution ===== followups may have been changed to relevant groups
(if there were any)
 
D

Dale

I have a spreadsheet that holds times for various biking trips. One column
has the overall time, formatted for time (e.g.- 5:48:00). The next column
has the distance in miles. The third column has a formula that is
Time/distance. I get the time it takes to travel a mile. How do I convert
that to miles per hour? Thanks

Dale
 
Q

quietning

hello Dale,

I got an idea,try this:
column A time
column B distance
C D E F
G
speed time hour minute second
=B2/D2 =E2+F2/60+G2/3600 =hour(A1) =minute(A1) =second(A1)
 
Q

quietning

hello Dale,


I got an idea,try this:
column A time
column B distance

speed time hour minute
second
=B2/D2 =E2+F2/60+G2/3600 =hour(A1) =minute(A1) =second(A1)
 
D

Dale

Thanks so much. I got it to work using the hour, minute, second formulas. I
had to rethink how I manually calculated the mph, then it was pretty simple.
You learn something new everyday, and this was it! Again, thanks.

Dale
 
J

Jerry W. Lewis

=distance/time/24
or
=distance/(time*24)
and formatted at a number. Excel times are stored as a decimal fraction
of a day (time displays are handled by formatting), so you have to
distance/time gives miles/day, so you have to convert it to miles/hour.

Jerry
 
H

hhalle

Hi,

I did it the following way:

DISTANCE/(HOUR(X) + (MINUTE(X)*100/60)/100

1. DISTANCE is the cell containing your travelled distance
2. you devide the distance by the following:

X is the cell containing the time you filled
so:
(HOUR(X) + (MINUTE(X)*100/60)/100

I use it in the sheet I have loaded in my PDA when I go on vacation,
have include fuel consumption and time going form A - B thu
calculating also the mean speed, etc.

I hope it helps,

Hans :
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top