Decimal to Feet/Inches (tape measure friendly)

Capsaicin Burn

New Member
Joined
Jan 26, 2018
Messages
38
My goal is to calculate the diagonal measurement, in feet and inches, needed to square a building based on depth and width of the building.

My formula is A= building depth in ft. and B= building width in ft.
So A squared + B squared = C squared

Calculate the square root of C squared (ft.) and that is my diagonal number to square the building with.

All of that I have conquered. Now the number I receive is a decimal number which is often followed by many decimal digits.

How do I take that number and convert it to feet and inches that is tape measure friendly.

A random example is:
38.4' = 38' 4 4/5" (based on my excel conversion technique)

I guess I need the 4 4/5" converted to a tape measure friendly number. Sometimes the fractions giving are three digit numbers.

Maybe I can't figure it out because I'm making it more difficult than it needs to be. Thanks for ANY help.
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Pretty tape measure friendly...
However,
Code:
=MROUND(MOD(A1,1)*12,1/16)
and then format to fraction, up to two digits. Gives you 1/8 instead of 2/16 etc.
 
Upvote 0

Forum statistics

Threads
1,214,639
Messages
6,120,679
Members
448,977
Latest member
dbonilla0331

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