Conversion Formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I’m looking for a formula to convert distance.

Example:
60.625 to 5’ 3/8â€

Is this possible?
Can someone help me?
 
The closest I can easily get is =INT(A1/12)&"'
"&INT(MOD(A1,12))&TEXT(MOD(A1,1),"# ?/?")&""""
which gives 5' 0 5/8"
 
0.625 = 5/8

Will the full inches *ALWAYS* be a multiple of a full foot? Will you have
entries like:

1.25
8.50
0.75
13.125

Biff
 
Suggest this modified version:

=INT(A1/12)&"'
"&INT(MOD(A1,12))&IF(MOD(A1,1),TEXT(MOD(A1,1),"??/??")&"""","""")

Biff
 

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

Back
Top