Desperate! Square footage formula?

petice

Board Regular
Joined
May 14, 2002
Messages
74
Hi All,
Miss desperate here. I am trying to create a spreadsheet that automatically calculates the square footage of room measurements when they're entered as such: 7.1 X 12.4 (meaning-7 feet, 1 inch X 12feet, 4 inches) I've searched the board and cannot find anything.
Got any ideas???
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Taz, I think there's a slight error in your calculations:

From 12.4, it should be 4/12 not .4/12
 
Upvote 0
they're entered as such: 7.1 X 12.4

Are the dimensions really entered as "7.1 X 12.4" ? As in all in one cell? You'll need to pull out the length and width portion of the string then apply Taz's formula dividing by 1.2 rather than 12.
 
Upvote 0
You're right, HOTPEPPER, I missed a decimal in there.

So that should be (this is reducible, of course):
=INT(A2)+10*(A2-INT(A2))/12

This is what happens when they make you work 12-hour days, 6 days a week for 3 weeks (so far :outtahere: ).
 
Upvote 0
Square Footage - Yikes I should have explained better

Column A, Row 1 is the first measurement
Column B Row 1 is the second measurment
Column C, Row 1 should have the square footage of both measurments together.
I don't know how to put up a spreadsheet example on this site.
 
Upvote 0
Possibly:

=((MOD(A1,1)/1.2)+INT(A1))*((MOD(B1,1)/1.2)+INT(B1))

Copy down.
 
Upvote 0
projectile1.xls
ABCDE
1LengthWidthSqftLengthWidth
22.113.418.472222.9166676.333333
Sheet3


What about 2.11
.11 is between .1 and .2, it's not bigger than .9

In C1:
=(INT(A2)+RIGHT(TEXT(A2,".00"),2)/12)*(INT(B2)+RIGHT(TEXT(B2,".00"),2)/12)

Or to simply convert to decimal feet in D1:
=INT(A2)+RIGHT(TEXT(A2,".00"),2)/12
 
Upvote 0

Forum statistics

Threads
1,226,581
Messages
6,191,840
Members
453,684
Latest member
Gretchenhines

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