Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default how do i calculate 2' x 4' x 4"

How do I calculate cubic feet in excel? I need to be able to do it two ways.
With all feet or with feet and inches. example... 2' x 4' x 3' or 2' x 4' x
1'-5" or 2' x 4' x 4". I have a construction master IV calculator that will
give me both answers in cubic feet. 2'x4'x3'= 24cubic feet or
2'x4'x1'-5"=11.33333 cu ft or 2'x4'x4"=2.6667 cu ft.

I have excel 2003 is it possible to do this and if not why these are basic
math. Also don't see any formulas that are geared towards the construction
industry. Is there an add on I can download?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 345
Default how do i calculate 2' x 4' x 4"

Try this:
http://josh.com/InchCalc/index.htm


"PlaceCarp" wrote:

How do I calculate cubic feet in excel? I need to be able to do it two ways.
With all feet or with feet and inches. example... 2' x 4' x 3' or 2' x 4' x
1'-5" or 2' x 4' x 4". I have a construction master IV calculator that will
give me both answers in cubic feet. 2'x4'x3'= 24cubic feet or
2'x4'x1'-5"=11.33333 cu ft or 2'x4'x4"=2.6667 cu ft.

I have excel 2003 is it possible to do this and if not why these are basic
math. Also don't see any formulas that are geared towards the construction
industry. Is there an add on I can download?

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,520
Default how do i calculate 2' x 4' x 4"

Check out help on the function CONVERT() WHICH converts a number from one
measurement system to another. If this function is not available, and returns
the #NAME? error, install and load the Analysis ToolPak add-in. To install;
from menu ToolsAddIns check 'Analysis ToolPak' and hit OK.

A1 = 2 (ft)
A2 = 4 (ft)
A3 = 4 (inches)

cubic feet would be
=A1*A2*CONVERT(A3,"in","ft")

If you have entires made in this format (1'-5") in a cell; you might need to
use additional functions like LEFT() SEARCH() and SUBSITUTE() to extract the
numeric portion of the string to feed into CONVERT() function...

--
Jacob


"PlaceCarp" wrote:

How do I calculate cubic feet in excel? I need to be able to do it two ways.
With all feet or with feet and inches. example... 2' x 4' x 3' or 2' x 4' x
1'-5" or 2' x 4' x 4". I have a construction master IV calculator that will
give me both answers in cubic feet. 2'x4'x3'= 24cubic feet or
2'x4'x1'-5"=11.33333 cu ft or 2'x4'x4"=2.6667 cu ft.

I have excel 2003 is it possible to do this and if not why these are basic
math. Also don't see any formulas that are geared towards the construction
industry. Is there an add on I can download?

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 563
Default how do i calculate 2' x 4' x 4"

Suppose you have entered the three values (2,4,3) in A1, A2, A3
In A4 use =A1*A2*A3 to get the answer of 24 cubic feet

Now type these values into a1:A3:
A1 type 2 5/12 (with a gap between the 2 and the 5) standing fro 2 feet 5
inches
A2 type 3 6/12
A3 type 4 1/12
Note how A2 displays 3 1/2 but you could learn how to give al the cells a
custom format of # ??/12 so that they will always display 12th for inches

best wishes
--
Bernard Liengme
Microsoft Excel MVP
http://people.stfx.ca/bliengme

"PlaceCarp" wrote in message
...
How do I calculate cubic feet in excel? I need to be able to do it two
ways.
With all feet or with feet and inches. example... 2' x 4' x 3' or 2' x 4'
x
1'-5" or 2' x 4' x 4". I have a construction master IV calculator that
will
give me both answers in cubic feet. 2'x4'x3'= 24cubic feet or
2'x4'x1'-5"=11.33333 cu ft or 2'x4'x4"=2.6667 cu ft.

I have excel 2003 is it possible to do this and if not why these are basic
math. Also don't see any formulas that are geared towards the construction
industry. Is there an add on I can download?


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 690
Default how do i calculate 2' x 4' x 4"

On 3/3/2010 2:16 AM, PlaceCarp wrote:
How do I calculate cubic feet in excel? I need to be able to do it two ways.
With all feet or with feet and inches. example... 2' x 4' x 3' or 2' x 4' x
1'-5" or 2' x 4' x 4". I have a construction master IV calculator that will
give me both answers in cubic feet. 2'x4'x3'= 24cubic feet or
2'x4'x1'-5"=11.33333 cu ft or 2'x4'x4"=2.6667 cu ft.

I have excel 2003 is it possible to do this and if not why these are basic
math. Also don't see any formulas that are geared towards the construction
industry. Is there an add on I can download?



Hi. Another way might be to simulate the use of Units.
One way would be to assume a default unit of "Ft"
Then, add a name range, say "In" with a value of 1/12.

A1: 2
B1: 4
C1: =1+5*In

C1 would be interpreted as 1 Ft, plus 5 Inch.

D1: =PRODUCT(A1:C1)
returns 11.3333

= = = = = = =
HTH :)
Dana DeLouis


  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 690
Default how do i calculate 2' x 4' x 4"

On 3/3/2010 9:17 AM, Dana DeLouis wrote:
On 3/3/2010 2:16 AM, PlaceCarp wrote:
How do I calculate cubic feet in excel? I need to be able to do it two
ways.
With all feet or with feet and inches. example... 2' x 4' x 3' or 2' x
4' x
1'-5" or 2' x 4' x 4". I have a construction master IV calculator that
will
give me both answers in cubic feet. 2'x4'x3'= 24cubic feet or
2'x4'x1'-5"=11.33333 cu ft or 2'x4'x4"=2.6667 cu ft.

I have excel 2003 is it possible to do this and if not why these are
basic
math. Also don't see any formulas that are geared towards the
construction
industry. Is there an add on I can download?



Hi. Another way might be to simulate the use of Units.
One way would be to assume a default unit of "Ft"
Then, add a name range, say "In" with a value of 1/12.

A1: 2
B1: 4
C1: =1+5*In

C1 would be interpreted as 1 Ft, plus 5 Inch.

D1: =PRODUCT(A1:C1)
returns 11.3333

= = = = = = =
HTH :)
Dana DeLouis


Just to mention, if you added a name formula for Meters also, one could
place in C1 something like
=2*m+3.4*In

which would be a length of 2 Meters plus 3.4 inches.

The solution would be in cubic feet in D1.
There are many variations along this theme. :)

= = = = = = =
HTH :)
Dana DeLouis
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Turn off "CALCULATE" on bottom of Excel worksheet. near "Ready" chrispal86 Excel Discussion (Misc queries) 2 February 2nd 10 08:36 PM
Trying to calculate hours worked on timecard using "IF" command Melissa Excel Worksheet Functions 6 January 5th 09 08:23 PM
Functions for "current" & "previous" month to calculate data Priss Excel Worksheet Functions 11 April 15th 08 06:24 PM
How do I calculate "cummulative percent of total" in a pivot table Steve P Excel Discussion (Misc queries) 0 September 25th 07 02:06 PM
The word "calculate" is at the bottom of my spread sheet. why? brooks o Excel Worksheet Functions 2 May 19th 06 12:31 AM


All times are GMT +1. The time now is 04:57 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"