PC Review


Reply
Thread Tools Rate Thread

Check to see if formula is correct

 
 
Bob
Guest
Posts: n/a
 
      30th Jun 2011
Could someone please check if my formula is correct for calculating my
total square feet.
P6 = Lenght
Q6 = Width
R6 = Height
S6 = Qty.
T6 = Total Square Feet
=(2*(P6)*(Q6)+2*(P6)*(R6)+2*(Q6)*(R6))*S6/144
What is 1 x 1 x 1, my answer is .0416. Is that correct?
 
Reply With Quote
 
 
 
 
GS
Guest
Posts: n/a
 
      30th Jun 2011
After serious thinking Bob wrote :
> Could someone please check if my formula is correct for calculating my
> total square feet.
> P6 = Lenght
> Q6 = Width
> R6 = Height
> S6 = Qty.
> T6 = Total Square Feet
> =(2*(P6)*(Q6)+2*(P6)*(R6)+2*(Q6)*(R6))*S6/144

Not sure why you multiply by 2. Are you calcing surface area sq. ft.?
Assuming the objects are rectangular (6 sides)...

=SUM((P6*Q6)*2,(P6*R6)*2,(R6*Q6)*2)*Qty

In plain english:

=SUM((FeetLong*FeetWide)*2,(FeetLong*FeetHigh)*2,(FeetHigh*FeetWide)*2)*Qty

> What is 1 x 1 x 1, my answer is .0416. Is that correct?


No! Assuming these dims are feet, a 1Ft square object has 6 sq. ft. of
surface area.

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc


 
Reply With Quote
 
GS
Guest
Posts: n/a
 
      30th Jun 2011
Correction:
>> What is 1 x 1 x 1, my answer is .0416. Is that correct?

>

No! Assuming these dims are feet, a 1x1x1 cube has 6 sq. ft. of
surface area.

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc


 
Reply With Quote
 
GS
Guest
Posts: n/a
 
      30th Jun 2011
After serious thinking CWatters wrote :
> On 30/06/2011 02:44, GS wrote:
>> After serious thinking Bob wrote :
>>> Could someone please check if my formula is correct for calculating my
>>> total square feet.
>>> P6 = Lenght
>>> Q6 = Width
>>> R6 = Height
>>> S6 = Qty.
>>> T6 = Total Square Feet
>>> =(2*(P6)*(Q6)+2*(P6)*(R6)+2*(Q6)*(R6))*S6/144

>> Not sure why you multiply by 2. Are you calcing surface area sq. ft.?
>> Assuming the objects are rectangular (6 sides)...
>>
>> =SUM((P6*Q6)*2,(P6*R6)*2,(R6*Q6)*2)*Qty
>>
>> In plain english:
>>
>> =SUM((FeetLong*FeetWide)*2,(FeetLong*FeetHigh)*2,(FeetHigh*FeetWide)*2)*Qty
>>
>>> What is 1 x 1 x 1, my answer is .0416. Is that correct?

>>
>> No! Assuming these dims are feet, a 1Ft square object has 6 sq. ft. of
>> surface area.
>>

>
> His dims must be in inches. Hence the 144.
>
> 6/144 = 0.0416


Thanks! -Makes sense. I could have derived that but didn't catch it
given the context of square feet. In this case...

=((SUM(P6*Q6,P6*R6,Q6*R6)*2)*S6)/144

Returns: 0.041667 sq. ft. for 1 piece measuring 1x1x1

Though, I'd prefer to name the columns with local scope as
ColumnAbsolute,RowRelative so the formula makes easier to understand
sense 'as viewed'!

=((SUM(Length*Width,Length*Height,Width*Height)*2)*Qty)/InchesPerSqFt

--
Garry

Free usenet access at http://www.eternal-september.org
ClassicVB Users Regroup! comp.lang.basic.visual.misc


 
Reply With Quote
 
Bob
Guest
Posts: n/a
 
      4th Jul 2011
On Jun 30, 10:25*am, GS <g...@somewhere.net> wrote:
> After serious thinking CWatters wrote :
>
>
>
>
>
> > On 30/06/2011 02:44, GS wrote:
> >> After serious thinking Bob wrote :
> >>> Could someone please check if my formula is correct for calculating my
> >>> total square feet.
> >>> P6 = Lenght
> >>> Q6 = Width
> >>> R6 = Height
> >>> S6 = Qty.
> >>> T6 = Total Square Feet
> >>> =(2*(P6)*(Q6)+2*(P6)*(R6)+2*(Q6)*(R6))*S6/144
> >> Not sure why you multiply by 2. Are you calcing surface area sq. ft.?
> >> Assuming the objects are rectangular (6 sides)...

>
> >> =SUM((P6*Q6)*2,(P6*R6)*2,(R6*Q6)*2)*Qty

>
> >> In plain english:

>
> >> =SUM((FeetLong*FeetWide)*2,(FeetLong*FeetHigh)*2,(FeetHigh*FeetWide)*2)*Qty

>
> >>> What is 1 x 1 x 1, my answer is .0416. Is that correct?

>
> >> No! Assuming these dims are feet, a 1Ft square object has 6 sq. ft. of
> >> surface area.

>
> > His dims must be in inches. Hence the 144.

>
> > 6/144 = 0.0416

>
> Thanks! -Makes sense. I could have derived that but didn't catch it
> given the context of square feet. In this case...
>
> * =((SUM(P6*Q6,P6*R6,Q6*R6)*2)*S6)/144
>
> * Returns: 0.041667 sq. ft. for 1 piece measuring 1x1x1
>
> Though, I'd prefer to name the columns with local scope as
> ColumnAbsolute,RowRelative so the formula makes easier to understand
> sense 'as viewed'!
>
> * =((SUM(Length*Width,Length*Height,Width*Height)*2)*Qty)/InchesPerSqFt
>
> --
> Garry
>
> Free usenet access athttp://www.eternal-september.org
> ClassicVB Users Regroup! comp.lang.basic.visual.misc- Hide quoted text -
>
> - Show quoted text -


Thanks, for all the responce!
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Check to see if a formula is correct oldjay Microsoft Excel Programming 3 1st Mar 2010 01:10 PM
Need to check if the value in one cell is correct or not RobertoB Microsoft Excel Programming 12 9th Jan 2010 09:59 PM
Check correct registration of dll Christoph Dümmen Windows XP Help 2 9th Jan 2006 06:58 AM
Re: How to correct this formula and check if more issues are existing? Tom Ogilvy Microsoft Excel Programming 6 27th Oct 2004 01:38 PM
Re: How to correct this formula and check if more issues are existing? Mike Fogleman Microsoft Excel Programming 1 26th Oct 2004 12:42 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:42 AM.