Excel: Formulas for feet and inches

RebeccaR

New Member
Joined
Jan 29, 2019
Messages
4
I am trying to combine 2 cells in excel. I have feet in column Hand inches(fraction form) in column I. I want to combine these two cells in column M and have it display feet and inches in fraction form.

*I do not want to round.

I have tried to use this formula that i found on the web but it does round(Hence the ROUND that didn't register in my head when typing)
=INT(H4)&"'-"&ROUND(((I4-INT(I4))*12),0) & CHAR(34)

I have also tried concatenation but that displays the inches in a decimal.
=CONCATENATE(H4,"-",I4)

I appreciate any help that someone can give. Thank you!
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
=h4&"-"&text(i4,"#?/?") <-- this will round
=H4&"-"&TEXT(I4,"#??/??") <-- this will also round, but will be more precise, I didn't know how many digits your data goes to - you can try both to see which you prefer
 
Last edited:
Upvote 0
<colgroup><col width="190" style="width: 143pt; mso-width-source: userset; mso-width-alt: 6948;"> <tbody> </tbody>
=F5&" - "&text(G5,"# ??/??")

Change your cell address to fit. Itdoesn' matter hat your inches cell iindecimal
 
Upvote 0
=h4&"-"&text(i4,"#?/?") <-- this will round
=H4&"-"&TEXT(I4,"#??/??") <-- this will also round, but will be more precise, I didn't know how many digits your data goes to - you can try both to see which you prefer


for example my first set of data is:
H4 = 39
I4 = 7 11/16

I want M4 to say 39' - 7 11/16"


I tried the formula above and it gives me 39-123/16.

Thank you!
 
Upvote 0

Forum statistics

Threads
1,215,756
Messages
6,126,689
Members
449,329
Latest member
tommyarra

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