Hello,
Every time I try to use times in Excel, it wants to make them into times of the day instead of just time. In this case I have a bunch of times related to a cycling time trial. Riders ride a 10.25 mile course and have a time to complete the ride in minutes and seconds. So I do not want to deal with hours at all. Ultimately I want to enter time and calculate speed. The calculation is 615 divided by the time. 615 is 10.25 times 60 to convert minutes to hours and 10.25 is the mileage of the course. Here are my issues:
First: I want to be able to enter data as 22:07 for 22 minutes and 7 seconds. If I enter data this way it will be entered as 22 hours and 7 minutes. The only way I can seem to get what I am looking for is to format the cells as [mm]:ss and enter the data as 0:22:07.
Second: if my time data is in column C and we are in row 5, here is my calculation for the speed.
=(615/((MINUTE(C5))+((SECOND(C5))/60)))
I probably have too many ()’s in there but I wanted to make sure I got it right Here are my questions on this one:
-
[*]Are there any issues with my formula? – it seems to work fine
[*]Is there an easier way to do the calculation?
[*]How can I handle data entry more easily? (entering an extra “0:” for every rider is a lot of extra work)
Thanks,
Andy