Share via

How do I convert a decimal (33.25) to feet & inches (33’ 4”)?

Anonymous
2011-03-31T00:14:06+00:00

as an ex. (33.25) = (33'4")

as an ex. (12.47) = (12'1/2")

Microsoft 365 and Office | Excel | For home | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments
Answer accepted by question author
  1. Anonymous
    2011-03-31T00:40:59+00:00

    I don't know how .25 should give 4", or how .47 should give 1/2", but if you have those numbers in column A, starting with A1, then you could put this formula in B1:

    =INT(A1)&"'"&TEXT(MOD(A1,1)*12,"0")&CHAR(34)

    and copy it down. These are the results that I got:

    33.25 33'3"
    12.47 12'6"

    Hope this helps.

    Pete

    1 person found this answer helpful.
    0 comments No comments
Answer accepted by question author
  1. Anonymous
    2011-03-31T00:55:32+00:00

    I wouldn't actually do it this way, but here is another method that also works...

    =SUBSTITUTE(TEXT(100*INT(A1)+12*MOD(A1,1),"0' 00""")," 0"," ")

    as well as this method...

    =SUBSTITUTE(SUBSTITUTE("X' Z""","X",INT(A1)),"Z",ROUND(12*MOD(A1,1),0))

    0 comments No comments
Answer accepted by question author
  1. Anonymous
    2011-03-31T00:50:00+00:00

    (Same questions at Pete_UK)

    Here's another approach:

    =INT(A1)&"' "&MOD(MROUND(A1,1/12),1)*12&""""

    0 comments No comments
Answer accepted by question author
  1. Anonymous
    2011-03-31T00:47:42+00:00

    Your shown conversions are not correct. This formula will do what you want and show the correct conversions for you...

    =TEXT(A1,"0' ")&TEXT(MOD(A1,1)*12,"0""")

    0 comments No comments

0 additional answers

Sort by: Most helpful