+ Reply to Thread
Results 1 to 5 of 5

convert feet-inches-sixtennths to feet standard dimensions

  1. #1
    Registered User
    Join Date
    05-21-2006
    Location
    Cochrane
    MS-Off Ver
    365
    Posts
    59

    convert feet-inches-sixtennths to feet standard dimensions

    Hello,

    in the shop we use feet-inches-16ths as measurements.

    For example.
    13-8-3= 13' 8 3/16"
    14-0-12 = 14' 3/4"

    Can anybody think of a formula to convert this?
    Paul

  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,780

    Re: convert feet-inches-sixtennths to feet standard dimensions

    A bit cumbersome, but with your text string in A1 (prefix it with an apostrophe to stop Excel seeing it as a date):

    =CONVERT((LEFT(A1,FIND("-",A1)-1)*12)+SUBSTITUTE(MID(A1,FIND("-",A1)+1,2),"-","")+(SUBSTITUTE(RIGHT(A1,2),"-","")/16)*100,"in","cm")

    Or, just for 'decimal' inches:

    =(LEFT(A1,FIND("-",A1)-1)*12)+SUBSTITUTE(MID(A1,FIND("-",A1)+1,2),"-","")+(SUBSTITUTE(RIGHT(A1,2),"-","")/16)*100

    Or feet:

    =((LEFT(A1,FIND("-",A1)-1)*12)+SUBSTITUTE(MID(A1,FIND("-",A1)+1,2),"-","")+(SUBSTITUTE(RIGHT(A1,2),"-","")/16)*100)/12
    Last edited by AliGW; 10-29-2019 at 12:33 PM.
    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 Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,499

    Re: convert feet-inches-sixtennths to feet standard dimensions

    I haven't been able to put it into one formula but here is how I would approach it, I'd take the values (I'm assuming) in one cell each, use the text to columns function and with delimited selected, go next and click other then put - in the box and hit finish.
    Then I'd try to recombine them with something like this...
    =A1&"' "&IF(B1=0,"",B1)&" "&C1&"/"&16&"''"
    The problem would be that it will return 12/16 of an inch rather than 3/4 of an inch.
    Make contributors happy, click on the "* Add Reputation" as a way to say thank you.
    Sam Capricci

  4. #4
    Forum Expert Sam Capricci's Avatar
    Join Date
    06-14-2012
    Location
    Palm Harbor, Florida
    MS-Off Ver
    16.84 for Mac MS 365
    Posts
    8,499

    Re: convert feet-inches-sixtennths to feet standard dimensions

    this looks like it gets you there (mostly, again it doesn't treat the 12/16 as 3/4) but it is close...

    =LEFT(A1,SEARCH("-",A1)-1)&"' "&IF(SUBSTITUTE(MID(A1,SEARCH("-",A1)*1,3),"-","")*1=0,"",SUBSTITUTE(MID(A1,SEARCH("-",A1)*1,3),"-",""))&" "&RIGHT(A1,LEN(A1)-SEARCH("-",A1,1)-2)&"/"&16&"''"

  5. #5
    Forum Expert
    Join Date
    03-20-2015
    Location
    Primarily UK, sometimes NL
    MS-Off Ver
    Work: Office 365 / Home: Office 2010
    Posts
    2,405

    Re: convert feet-inches-sixtennths to feet standard dimensions

    If you want 12/16 to display as 3/4, you can use this:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    It could probably be tidied up a bit, but it works.
    Attached Images Attached Images
    Regards,
    Aardigspook

    I recently started a new job so am a bit busy and may not reply quickly. Sorry - it's not personal - I will reply eventually.
    If your problem is solved, please go to 'Thread Tools' above your first post and 'Mark this Thread as Solved'.
    If you use commas as your decimal separator (1,23 instead of 1.23) then please replace commas with semi-colons in your formulae.
    You don't need to give me rep if I helped, but a thank-you is nice.

+ 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. Convert Feet and Inches (Fractions) to Decimal Feet
    By kellser in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 06-29-2022, 10:15 AM
  2. [SOLVED] (Negative) Feet and inches to Decimal feet
    By atdemeo in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 08-06-2017, 02:38 AM
  3. Convert feet and inches to decimal feet
    By hrg in forum Excel General
    Replies: 12
    Last Post: 04-11-2016, 05:19 PM
  4. Convert Feet and inches to decimal feet
    By Laserdude in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 05-05-2014, 12:10 AM
  5. [SOLVED] Feet in decimal form to feet/inches
    By devpatel85 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 12-26-2013, 10:18 AM
  6. Convert Decimal Feet to Feet and Inches
    By Surveyour in forum Excel General
    Replies: 6
    Last Post: 10-17-2013, 12:48 PM
  7. Convert feet and inches to deimal feet.
    By okenter in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 06-28-2011, 02:43 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