determined said:I've been tracking my distance and time, but would like to see it converted
to pace. What is the formula I'd use for that? Say I did 2 miles in 18
minutes. So I have 2 in the first column, and 18 in the second column...
When I try to get something that looks like mm:ss in the 3rd column, it just
returns zeros.
I guess I know just enough to be dangerous...
Hello,
So from what I've read it seems that you have two or three columns,
one for each "portion" of a time, i.e. one for hours, one for minutes,
one for seconds.
Start by concatenating these into one column. I made a spreadsheet
where I have hours in A, minutes in B, and seconds in C. To
concatenate these, I went into the D column (cell D2, specifically)
and entered the following formula:
=A2&":"&B2&":"&C2
The & concatenates data, so this says "Take A2, follow it with a
colon, then b2, then another colon, and end with c2"
Now D2 contains 0:22:18. Next format column D. Select it, right-click,
and pick 'Format Cells' Go to custom, and choose h:mm:ss. It's about
2/3rds of the way down the list.
Next I entered my distance in E2. I chose 3.3 miles in this case.
Column E does not need any special formatting.
I then did pace in Column F. I just entered the formula:
=D2/E2
and got the result 0.004692761.
I then formatted Column F with the same Custom->h:mm:ss format that
was used in Column D, and the pace was displayed as 0:06:45. Use the
mm:ss format and you can get rid of the leading 0 that represents the
'hours' portion of the time, i.e. it will look like 06:45.
Hopefully that will be easily adaptable to your spreadsheet.
There's a set of Newsgroups, microsoft.public.excel.*, that have been
a great resource for Excel stuff for me in the past. Whenever I have
an Excel problem, I often find that somebody else has already had the
same problem and recieved a solution there.
- Sean C.