I have a Proposal, in the proposal there is a sheet that gathers the the
facility upgrade cost, production man hours, by building and other info.
One thing I need for this sheet to do is take the Production hrs per
building and calculate installation days per building. Here is the formula I
am using:
=IF(E5<6,1,ROUND(E5/($F$3*8)*1.3,0))
In this case:
E5 is (7.9) Production Hrs By Building and is gathered from the Costing Tab
or Sheet in the Proposal
F3 is estimated crew size of (3) and is gathered from the Costing Tab or
Sheet in the Proposal
Currently I am getting irratic calculations shown below. I would like for it
to show a part of a day if it is 7.9 hours to do the job and there are 3 men
working 8 hours a day it should show something like 0.34 intallation time day
with a Safety Factor.
Production Hrs By Bldg Installation Time (Days) with Safety Factor
E5 7.9 0.0
E6 0.8 1.0
E7 3.2 1.0
E8 6.4 0.0
E9 3.3 1.0
E10 19.5 1.0
|
|
0
|
|
|
|
Reply
|
Utf
|
4/21/2010 6:40:01 PM |
|
Dave - Your last argument in the Round function is telling it to round it to
0 decimal places. =IF(E5<6,1,ROUND(E5/($F$3*8)*1.3,2)) might be more to your
liking
"DaveOfArkansas" wrote:
> I have a Proposal, in the proposal there is a sheet that gathers the the
> facility upgrade cost, production man hours, by building and other info.
>
> One thing I need for this sheet to do is take the Production hrs per
> building and calculate installation days per building. Here is the formula I
> am using:
>
> =IF(E5<6,1,ROUND(E5/($F$3*8)*1.3,0))
>
> In this case:
>
> E5 is (7.9) Production Hrs By Building and is gathered from the Costing Tab
> or Sheet in the Proposal
>
> F3 is estimated crew size of (3) and is gathered from the Costing Tab or
> Sheet in the Proposal
>
> Currently I am getting irratic calculations shown below. I would like for it
> to show a part of a day if it is 7.9 hours to do the job and there are 3 men
> working 8 hours a day it should show something like 0.34 intallation time day
> with a Safety Factor.
>
> Production Hrs By Bldg Installation Time (Days) with Safety Factor
> E5 7.9 0.0
> E6 0.8 1.0
> E7 3.2 1.0
> E8 6.4 0.0
> E9 3.3 1.0
> E10 19.5 1.0
>
|
|
0
|
|
|
|
Reply
|
Utf
|
4/21/2010 7:53:01 PM
|
|
Thank you that helps.
Could you help me with one other thing in the formula.
If you will notice that E5 gives an installation days of (0.0) and E6 gives
an installation days of (1.0).
7.9 is > than 0.8 why doesn't it show it as it should be?
By the way with your new formula E5 now shows installation days of (0.43)
which is correct. But it still shows (1.00) for E6.
Production Hrs By Bldg Installation Time (Days) with
Safety Factor
E5 7.9 0.0
E6 0.8 1.0
E7 3.2 1.0
E8 6.4 0.0
E9 3.3 1.0
E10 19.5 1.0
"Duke Carey" wrote:
> Dave - Your last argument in the Round function is telling it to round it to
> 0 decimal places. =IF(E5<6,1,ROUND(E5/($F$3*8)*1.3,2)) might be more to your
> liking
>
>
> "DaveOfArkansas" wrote:
>
> > I have a Proposal, in the proposal there is a sheet that gathers the the
> > facility upgrade cost, production man hours, by building and other info.
> >
> > One thing I need for this sheet to do is take the Production hrs per
> > building and calculate installation days per building. Here is the formula I
> > am using:
> >
> > =IF(E5<6,1,ROUND(E5/($F$3*8)*1.3,0))
> >
> > In this case:
> >
> > E5 is (7.9) Production Hrs By Building and is gathered from the Costing Tab
> > or Sheet in the Proposal
> >
> > F3 is estimated crew size of (3) and is gathered from the Costing Tab or
> > Sheet in the Proposal
> >
> > Currently I am getting irratic calculations shown below. I would like for it
> > to show a part of a day if it is 7.9 hours to do the job and there are 3 men
> > working 8 hours a day it should show something like 0.34 intallation time day
> > with a Safety Factor.
> >
> > Production Hrs By Bldg Installation Time (Days) with Safety Factor
> > E5 7.9 0.0
> > E6 0.8 1.0
> > E7 3.2 1.0
> > E8 6.4 0.0
> > E9 3.3 1.0
> > E10 19.5 1.0
> >
|
|
0
|
|
|
|
Reply
|
Utf
|
4/21/2010 8:25:02 PM
|
|
OK, look at your formula. The first test in the IF() is whether the value in
column E is less than 6 and, if so, return a 1, OTHERWISE do the ROUND()
portion of the calculation. Since .8 is far less than 6, the first test
passes and the formula gives you the 1.
I sense the first test in the IF() is either unneeded, or does not embody
the proper logic.
"DaveOfArkansas" wrote:
> Thank you that helps.
>
> Could you help me with one other thing in the formula.
>
> If you will notice that E5 gives an installation days of (0.0) and E6 gives
> an installation days of (1.0).
>
> 7.9 is > than 0.8 why doesn't it show it as it should be?
>
> By the way with your new formula E5 now shows installation days of (0.43)
> which is correct. But it still shows (1.00) for E6.
>
> Production Hrs By Bldg Installation Time (Days) with
> Safety Factor
> E5 7.9 0.0
> E6 0.8 1.0
> E7 3.2 1.0
> E8 6.4 0.0
> E9 3.3 1.0
> E10 19.5 1.0
>
>
> "Duke Carey" wrote:
>
> > Dave - Your last argument in the Round function is telling it to round it to
> > 0 decimal places. =IF(E5<6,1,ROUND(E5/($F$3*8)*1.3,2)) might be more to your
> > liking
> >
> >
> > "DaveOfArkansas" wrote:
> >
> > > I have a Proposal, in the proposal there is a sheet that gathers the the
> > > facility upgrade cost, production man hours, by building and other info.
> > >
> > > One thing I need for this sheet to do is take the Production hrs per
> > > building and calculate installation days per building. Here is the formula I
> > > am using:
> > >
> > > =IF(E5<6,1,ROUND(E5/($F$3*8)*1.3,0))
> > >
> > > In this case:
> > >
> > > E5 is (7.9) Production Hrs By Building and is gathered from the Costing Tab
> > > or Sheet in the Proposal
> > >
> > > F3 is estimated crew size of (3) and is gathered from the Costing Tab or
> > > Sheet in the Proposal
> > >
> > > Currently I am getting irratic calculations shown below. I would like for it
> > > to show a part of a day if it is 7.9 hours to do the job and there are 3 men
> > > working 8 hours a day it should show something like 0.34 intallation time day
> > > with a Safety Factor.
> > >
> > > Production Hrs By Bldg Installation Time (Days) with Safety Factor
> > > E5 7.9 0.0
> > > E6 0.8 1.0
> > > E7 3.2 1.0
> > > E8 6.4 0.0
> > > E9 3.3 1.0
> > > E10 19.5 1.0
> > >
|
|
0
|
|
|
|
Reply
|
Utf
|
4/22/2010 12:19:01 PM
|
|
|
3 Replies
257 Views
(page loaded in 2.669 seconds)
Similiar Articles: Control Source Format for rounding - microsoft.public.access.forms ...... Post Question Groups ... Standard Numeric Format Strings The round-trip ("R") format specifier guarantees that a ... List Box Percentage Formatting - microsoft.public.access.forms ...First we saw how to format ratios as ... Listbox Format Question - microsoft.public ... List Box Percentage Formatting - microsoft.public.access.forms ... Do not round ... Setting the display format of a query using the DateDiff function ...I have a question concerning the display of a calculated field based ... Format([SomeValue],"0.00") or Round([SomeValue,2) -- John Spencer Access MVP 2002-2005, 2007 ... How to format numbers as architectural fractions (1/16,1/8,1/4 ...... Post Question ... but want to round to 1/16 precision. Previous Posts In This Thread: On Monday, February 15, 2010 11:14 AM Jack W wrote: How to format ... Changing report format with VBA - microsoft.public.access.reports ...So far the only way round this that I have discovered ... Changing report format with VBA - microsoft.public ... Thanks for taking the time to read my question. I have a ... How to Round Time in Access? - microsoft.public.accessI want to know how to round a time in access or excel ? ... com> wrote: You have to ask a more specific question if ... current date/time to the nearest 5 minutes: Format ... Truncate a number using Numeric Format Switch - microsoft.public ...I'm formatting a Word template where my incoming field has ... Post Question Groups ... Note: I do not > want to round, I just need to drop ... Condtional Formatting and Standard Deviation - microsoft.public ...... 2007, or I'm misinterpreting how "Conditional Formatting ... Post Question Groups ... 0 Decimal places/round function. - microsoft.public ... Percent value rounds up in Access - microsoft.public.access.forms ...... Post Question Groups ... table with a field that is set to Number, Double, format ... Do not round percentage - microsoft.public.access ... Format Merge Field - microsoft.public.word.docmanagement ...... Post Question Groups ... > > I want to format them so that each type comes out as it ... Note: I do not > want to round, I just need to drop all ... 40 Question answer sheet inc handout round section (pdf format ...Home > Free answer sheets > 40 Question answer sheet inc handout round section (pdf format) objective c - NSNumber Formatting (Round to 1000's place) - Stack ...I currently have a series of NSNumber objects with values between 0 and 500,000. They are randomly generated values with many decimal places. How can I print these ... c# - Why does .Net use a rounding algorithm in String.Format that ...I've noticed the following inconsistency in C#/.NET. I was wondering why it is so. Console.WriteLine("{0,-4:#.0} | {1,-4:#.0}", 1.04, Math.Round(1.04, 1)); Console ... The Quizbowl Resource Center • View topic - Format QuestionThe OAC format is a three-quarter format, which includes a "category" round (two team-directed questions and one tossup in each of ten subjects), a 20-question worksheet ... round 1 question- WWTBAM shuffle format soundtrack - YouTubeUploaded by khai198 on Nov 29, 2011 the music that plays during a round 1 question Category: Entertainment Tags: Soundtrack shuffle format new win License ... 7/17/2012 9:14:32 AM
|