+ Reply to Thread
Results 1 to 13 of 13

Running Pace Chart

  1. #1
    Registered User
    Join Date
    01-01-2018
    Location
    Northern Ireland
    MS-Off Ver
    10
    Posts
    5

    Running Pace Chart

    Hi Guy's,

    I've been searching the world wide web to try and find an excel formula which will convert pace per mile to pace per kilometre. So if I enter a value in one of the cells it will covert to the opposite and visa versa.

    Thanks in advance!

    Mark

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,869

    Re: Running Pace Chart

    Have a look at the CONVERT function: https://support.office.com/en-us/art...rs=en-US&ad=US
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Running Pace Chart

    Perhaps the attached will help?
    Total run time goes in column B, total distance in C, there's a drop down to chose between M or KM in D and the pace per mile and pace per KM will calculate in E and F respectively.

    I've set it up as a tracker as it's similar to something I use, but the calculations are in there if all you want to do is build a matrix to convert between M & KM.

    BSB
    Attached Files Attached Files

  4. #4
    Registered User
    Join Date
    01-01-2018
    Location
    Northern Ireland
    MS-Off Ver
    10
    Posts
    5

    Re: Running Pace Chart

    Ali thanks for your info it will help me out with something I need to do. BSB thanks for an excellent tool. I'll definitely be able to use it from time to time. What I was looking was probably simpler. If I put the km pace in 1 cell can I convert it to mile pace in the opposite cell. If you get my meaning.

    Kind Regards Mark

  5. #5
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,869

    Re: Running Pace Chart

    Can you provide a specific example?

  6. #6
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Running Pace Chart

    If A1 = the pace you wish to convert and B1 = either M or KM depending on which you're converting from, then the below in C1 should do what you need.
    Formula: copy to clipboard
    Please Login or Register  to view this content.

    See Sheet2 in the attached.

    BSB
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    01-01-2018
    Location
    Northern Ireland
    MS-Off Ver
    10
    Posts
    5

    Re: Running Pace Chart

    Gosh Ali, I hope this helps. I'm a multi sports coach and the way I have things set up at the minute is by way of a very long list of mile paces and their equivalent km pace. When I open up my workbook all the data I need for a particular person is contained on it. All I wanted to be able to do is enter a pace in a cell say 4:30 which is a minute mile pace and in the adjacent cell it gave me the KM pace. Or if I added the 2:48 in it's respective cell it changed to $:30 in it's respective cell. I'm looking to do something similar for heights and weights.

    4:30 = 2:48
    4:35 = 2:51
    4:40 = 2:54
    4:45 = 2:57
    4:50= 3:00
    4:55 = 3:03
    5:00 = 3:06
    5:05 = 3:09
    5:10 = 3:13

    Thanks Mark

  8. #8
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Running Pace Chart

    You wish to have it so you can enter a number in either one cell (for M) or another cell (for KM) and have it calculate in the opposite cell then you'll need to use VBA to perform the calculation and update the results.

    BSB

  9. #9
    Registered User
    Join Date
    01-01-2018
    Location
    Northern Ireland
    MS-Off Ver
    10
    Posts
    5

    Re: Running Pace Chart

    Thanks BSB that's excellent - whats VBM?

  10. #10
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Running Pace Chart

    VBA is Visual Basic for Applications. It's a programming language that you can use in Excel (and other programs) to do lots of fancy stuff.
    In this case you'd need to use it as for the calculation to work 'normally' you'd need the formula in both the KM and the M cells. But you want to be able to enter a value in either of these cells which would overwrite the formula. So you'd need the calculation to happen in memory when a specific event happens and then the result show in the relevant cell.

    I'll put something together for you.

    BSB

  11. #11
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Running Pace Chart

    Try this. The code I've used (below) is stored in the sheet module. If you right click the sheet tab and select "view code" you'll find it.
    Please Login or Register  to view this content.
    BSB
    Attached Files Attached Files

  12. #12
    Registered User
    Join Date
    01-01-2018
    Location
    Northern Ireland
    MS-Off Ver
    10
    Posts
    5

    Re: Running Pace Chart

    Thanks BSB, Yours doesn't appear to working unless it's me is the problem. Where and how do I enter the formula on my existing worksheet. If it's too much trouble don't be worrying about it, I thought it was much simpler.

  13. #13
    Forum Expert BadlySpelledBuoy's Avatar
    Join Date
    06-14-2013
    Location
    East Sussex, UK
    MS-Off Ver
    365
    Posts
    7,468

    Re: Running Pace Chart

    What do you mean by mine doesn't appear to be working?

    In the attachment in post #11 everything is set up. If you enter a pace in M in cell A2 then cell B2 will show the equivalent in KM and if you enter the pace in KM in cell B2 then A2 will show the equivalent in M.

    If you want to translate that to your real workbook then copy the code in post #11, right click the tab for the relevant sheet in your workbook and select "View Code". Paste the code in there and adjust the cell references to reflect the cells you're actually using and that should be it done.

    If you get stuck, feel free to attach your workbook and I'll amend the code for you.

    BSB

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How do I calculate running pace?
    By JE McGimpsey in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 09-06-2005, 07:05 AM
  2. How do I calculate running pace?
    By JE McGimpsey in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 09-06-2005, 06:05 AM
  3. [SOLVED] How do I calculate running pace?
    By Forrest in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 03:05 AM
  4. [SOLVED] How do I calculate running pace?
    By Forrest in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 02:05 AM
  5. [SOLVED] How do I calculate running pace?
    By Forrest in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 01:05 AM
  6. [SOLVED] How do I calculate running pace?
    By Forrest in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-06-2005, 12:05 AM
  7. [SOLVED] How do I calculate running pace?
    By Forrest in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 09-05-2005, 10:05 PM
  8. [SOLVED] How do I calculate running pace?
    By Forrest in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 06-08-2005, 11:05 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1