Conversion Formula

D

dawg

I’m looking for a formula to convert distance.

Example:
60.625 to 5’ 3/8â€

Is this possible?
Can someone help me?
 
D

David Biddulph

The closest I can easily get is =INT(A1/12)&"'
"&INT(MOD(A1,12))&TEXT(MOD(A1,1),"# ?/?")&""""
which gives 5' 0 5/8"
 
B

Biff

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
 
B

Biff

Suggest this modified version:

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

Biff
 
Top