dik
Structural
- Apr 13, 2001
- 25,967
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.
Assuming that formula works (I haven't checked) you could put it in cell C1 and change all references to "C1" in the formula and change them to "A1+B1". But in any case, the formula and the number(s) to convert are in different cells.bigjosh said:=INT(C1)&"'-"&TRIM(TEXT(ROUND(MOD(C1,1)*12*16,0)/16,"# ??/??")&"""")
=INT(A1+B1)&"'-"&TRIM(TEXT(ROUND(MOD(A1+B1,1)*12*16,0)/16,"# ??/??")&"""")
=INT(C1)&"'-"&TRIM(TEXT(ROUND(MOD(C1,1)*12*16,0)/16,"# ??/??")&"""")