Adding Feet and Inches

Hydestone

Board Regular
Joined
Mar 29, 2010
Messages
137
I am looking of for a simple worksheet to add feet and inches. Ie: column A has feet and column B has inches. Row 10 (?) would give you the result with feet in A and inches in B.

I can get the result in feet and inches in decimal format in the same cell, but now in separate cells.
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Something like this maybe


Excel 2013/2016
AB
1FeetInches
2106
3310
474
569
6
7Total FeetTotal Inches
82629
9
10Adjusted FeetAdjusted Inches
11285
Sheet1
Cell Formulas
RangeFormula
A8=SUM(A2:A5)
A11=A8+INT(B8/12)
B8=SUM(B2:B5)
B11=MOD(B8,12)
 
Upvote 0
Without an example of what you're looking at I can only guess with a possible solution:

Code:
=A1&" ft "&B1&" in"

Or if you're wanting a sum then:

Code:
=SUM(A1:A9,INT((SUM(B1:B9)/12)))&" ft "&MOD(SUM(B1:B9),12)&" in"
 
Upvote 0
maybe

Excel 2010
ABC
1feetinches
2106
3310
474
569
6
7
8
9
10285total
Sheet4
Cell Formulas
RangeFormula
A10=SUM(A2:A9)+INT(SUM(B2:B9)/12)
B10=SUM(B2:B9)-(INT(SUM(B2:B9)/12)*12)
 
Upvote 0

Forum statistics

Threads
1,214,397
Messages
6,119,271
Members
448,882
Latest member
Lorie1693

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