Sydney288

New Member
Joined
Jul 31, 2018
Messages
6
Hi everyone!

I'm new to this forum so i'm hoping you guys can help me out. I'm trying to make a form that will be able to convert a measurement that is in carpenters form to a normal FT'In' Fraction Format.

Ex. 9'6 1/2" is 09-06-08

the front 09-XX-XX stands for Ft, XX-06-XX stands for In, and XX-XX-08 stands for the 16ths of an Inch. so 8/16" is 1/2" Etc.

I'm trying to make a formula that will do this when i load it into Excel.

Please help me :confused::confused::confused::confused:
 
I got it to work! thank you! Now if i were to want to multiply that by just the number 3, how would i do that with a formula? I tried taking what the formula spat out and multiplying it by 3 but that didn't work :/

Do your math on lengths in inches then convert to the format of your choice

to change from ff-ii-ss (in A1) to inches =LEFT(A1,2)*12+MID(A1,4,2)+RIGHT(A1,2)/16


to change from inches (in B1) to X'Y p/q" use
=TEXT(INT(B1/12),"0")&"'"&TEXT(INT(MOD(B1,12)),"0")&IF(MOD(B1,1)," "&CHOOSE(ROUND(MOD(B1,1)*16,0)+1,"","1/16","1/8","3/16","1/4","5/16","3/8","7/16","1/2","9/16","5/8","11/16","3/4","13/16","7/8","15/16")&"""","""")


to change from inches (in B1) to ff-ii-ss use
=TEXT(INT(B1/12),"00")&"-"&TEXT(INT(MOD(B1,12)),"00")&"-"&TEXT(MOD(B1,1)*16,"00")
 
Upvote 0

Excel Facts

Can you AutoAverage in Excel?
There is a drop-down next to the AutoSum symbol. Open the drop-down to choose AVERAGE, COUNT, MAX, or MIN

Forum statistics

Threads
1,214,864
Messages
6,121,986
Members
449,060
Latest member
mtsheetz

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top