Convert decimal feet

taoist

New Member
Joined
Jan 26, 2005
Messages
15
How do you convert decimal feet to fractional feet and inches?

Ex: 12.25' to 12'-3" or 9.63' to 9' - 7 9/16" :rolleyes:
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Welcome to the Board.

Try eg:

=INT(A1)&"' - "&TEXT((A1-INT(A1))*12,"# ?/16")&""""

where A1 contains the decimal feet.
 
Upvote 0
Thank You everyone for welcoming me to the board. I appreciate your quick responses. I will give the formulas a try and checl out the article on the board.

taoist (y)
 
Upvote 0
Thanks for the format tip Andrew! It worked great. I do have a question though. When using this format if there are no fractions the " is placed to far to the right of the inches number. Is there a way to have the " mark float or adjust itiself to the inches number?

taoist (y) :rolleyes:
 
Upvote 0
The formula is getting a bit long ...

=INT(A1)&"'"&IF((A1-INT(A1))," - "&INT((A1-INT(A1))*12)&IF(((A1-INT(A1))*12)-INT((A1-INT(A1))*12),TEXT(((A1-INT(A1))*12)-INT((A1-INT(A1))*12)," ?/16"),"")&"""","")
 
Upvote 0

Forum statistics

Threads
1,214,527
Messages
6,120,057
Members
448,940
Latest member
mdusw

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