+ Reply to Thread
Results 1 to 5 of 5

Converting feet and inches to meters

  1. #1
    Registered User
    Join Date
    04-09-2013
    Location
    Akron, OH
    MS-Off Ver
    Excel 2010
    Posts
    2

    Converting feet and inches to meters

    I am new to this forum and was in dire need of a formula that converts a three digit number in feet and inches to meters. For example 5'9" is written as 509 in cell A1. This needs to be converted to 1.79 meters in B1. Specifically, I need to automatically convert this to meters for body mass index calculation. Even if I can convert this to inches, I can do the rest.

    I explored the option of the InchCalc add-in file, but the format has to be displayed as 5' - 9".

    Thanks.

  2. #2
    Forum Guru
    Join Date
    04-13-2005
    Location
    North America
    MS-Off Ver
    2002/XP and 2007
    Posts
    15,829

    Re: Converting feet and inches to meters

    Is "509" the required format for entering the data? If I had control over how the data was entered, I would probably enter it as fractional feet 5 9/12. Then use the CONVERT() function http://office.microsoft.com/en-us/ma...551.aspx?CTT=1 to convert fractional feet to meters.
    Quote Originally Posted by shg
    Mathematics is the native language of the natural world. Just trying to become literate.

  3. #3
    Valued Forum Contributor
    Join Date
    03-29-2013
    Location
    United Kingdom
    MS-Off Ver
    Office/Excel 2013
    Posts
    1,749

    Re: Converting feet and inches to meters

    Assuming 509 is in cell A1
    =((VALUE(LEFT(A1,1))*12)+VALUE(RIGHT(A1,2)))*25.4/1000
    Elegant Simplicity............. Not Always

  4. #4
    Registered User
    Join Date
    04-09-2013
    Location
    Akron, OH
    MS-Off Ver
    Excel 2010
    Posts
    2

    Re: Converting feet and inches to meters

    Thank you Andy for that wonderful and easy-to-use formula. I had been looking everywhere for the answer for one-and-a-half weeks.

  5. #5
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2003, 2010
    Posts
    40,678

    Re: Converting feet and inches to meters

    Another way:

    =0.3048*DOLLARDE(A1/100, 12)
    Entia non sunt multiplicanda sine necessitate

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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