dik
Structural
- Apr 13, 2001
- 25,964
Does anyone have a formula to convert inches to feet-inches, eg. 96 is converted to 8'-0"? If you do, can you cut and paste it?
thanks, Dik
thanks, Dik
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
=IF(SIGN(A1)=-1,"- ","")&IF(ROUNDUP(ABS(A1/12),0)-ABS(A1/12)<=1/12/32,ROUNDUP(ABS(A1/12),0) &"'-0""",INT(ABS(A1)/12)& "'-"&IF(ABS(A1)-FLOOR(ABS(A1),1/6)<CEILING(ABS(A1),1/16)-ABS(A1),TEXT(FLOOR(MOD(ABS(A1),12),1/16),"# #/##"),TEXT(CEILING(MOD(ABS(A1),12),1/16),"# #/##"))&"""")
=IF(SIGN(A1)=-1,"- ","")&INT(ROUND(ABS(A1)*16,0)/16/12)&"'-"&TEXT((MOD(ROUND(ABS(A1)*16,0)/16,12)),"# #/##")&""""
=LEFT(A1,SEARCH("'",A1)-1)*12+MID(A1,SEARCH("-",A1,2)+1,LEN(A1)-SEARCH("-",A1,2)-1)