formula to convert decimal feet to feet inch sixteenths

G

Guest

I would like to write a formula in excel, without using macros, to convert
decimal feet to feet-inch-sixteenths.

Can someone help me ?
 
B

Bob Phillips

Is this any good?

=TEXT(INT(D18)," 0 ""feet """)&INT(MOD(D18,1)*12)&"
"&TEXT(MOD(D18*12,1),"0/16")&" inches"

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
D

Doug Kanter

tv said:
I would like to write a formula in excel, without using macros, to convert
decimal feet to feet-inch-sixteenths.

Can someone help me ?

Are you able to write the formula on paper first?
 
G

Guest

Decimal value in A1, formula in B1:


=INT(A1) & " ft " & TEXT(MOD(A1,1)*12, "# ??/16") & "in"

A1=2.345 (ft)

B1=2 ft 4 2/16 in

HTH

:
 
B

Bob Phillips

Whilst I concede that yours is much better than mine, it can still be
improved upon <vbg>

=INT(A1) & " ft " & TEXT(MOD(A1,1)*12, "# ??/16 ""in""")

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
G

Guest

Bob,
I'm flattered!

Bob Phillips said:
Whilst I concede that yours is much better than mine, it can still be
improved upon <vbg>

=INT(A1) & " ft " & TEXT(MOD(A1,1)*12, "# ??/16 ""in""")

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)
 
G

Guest

Thamk you for this formula
however, i would like my result to read in the following format (ex: 4-6-8)

can you help me tune the formula

thanks
 
R

Ron Rosenfeld

Thamk you for this formula
however, i would like my result to read in the following format (ex: 4-6-8)

can you help me tune the formula

thanks

Here's one way:

=INT(A1)&"-"&INT(MOD(A1,1)*12)&"-"&ROUND(MOD(MOD(A1,1)*12,1)*16,0)


--ron
 
G

Guest

I found your question very similar to one our school nurse has posed: When
our gym teachers measure students they report students' height in inches only
ie 61". Might their be a formula that would convert 61 inches (61") to 5' 1"?
 
R

Ron Rosenfeld

I found your question very similar to one our school nurse has posed: When
our gym teachers measure students they report students' height in inches only
ie 61". Might their be a formula that would convert 61 inches (61") to 5' 1"?

Assuming whole inches only:

=INT(A1/12)&" ft, "&MOD(A1,12)&" inches"

or,

=INT(A1/12)*100+MOD(A1,12)

and custom format:

Format/Cells/Number/Custom Type: 0' 00\"

If you want to report to tenths of an inch, change the Custom format to
0' 00.0\"


--ron
 
G

Guest

Do I simply enter the formula you recommended into the formula bar in cell A1
(example) and then try entering an inches number 55 or 55" (in cell A1) and
it should convert to 4'7"?
 
G

Guest

clarification request:
Using your first formula... would the entire formula including the
characters beyond the comma (,) go into the formula bar with cell A1
selected? Also, is there a space after the comma followed by
"&MOD(A1,12)&"inches"?
 
R

Ron Rosenfeld

clarification request:
Using your first formula... would the entire formula including the
characters beyond the comma (,) go into the formula bar with cell A1
selected?

No. The formula refers to cell A1 which would be where you put your data. If
you have a formula in the cell, and then overwrite it with data, you no longer
have the formula.

But of course you use the entire formula, if you want the result in feet and
inches.
Also, is there a space after the comma followed by "&MOD(A1,12)&"inches"?
Yes.

--ron
 
G

Guest

THe space thing was holding me up. I finally tried it with spaces and it
worked. I wasn't aware spaces were allowed in Excel formulas. 'ya learn
something everyday. Many thanks
 
R

Ron Rosenfeld

THe space thing was holding me up. I finally tried it with spaces and it
worked. I wasn't aware spaces were allowed in Excel formulas. 'ya learn
something everyday. Many thanks

You're welcome.
The space is merely to "make it look good". It is entirely optional.
--ron
 
J

John A

I am in dire need of a How To Question regarding this Discussion group. I
would like to pose a question but when I click the New>Questions button
nothing happens... no window opens for me to enter my question it... that's
why I am piggy-backing on this post...
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top