473,396 Members | 1,918 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

maths on a form

i am trying to calculate the efficieny of a work group

case 1
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have no downtime
this = 50% efficient

case 2
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have 30 minutes downtime
this = 100% efficient

case 3
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have 15 minutes downtime
this = 75% efficient

case 4
a group has 1 hour as available time
The group have a target of 100
They Achieve 25
and have 15 minutes downtime
this = 25% efficient
can anyone help with a formula

kevin

Feb 2 '06 #1
5 1220
Well, you lost me on Cases 3 & 4. I would have expected them to be 66.667% &
33.333%. Basically, you are saying they are expected to do 100 items in 60
minutes which would also be 25 items every 15 minutes. If they are down for
15 minutes, then they should only be expected to do 75 items. You say they
have finished 50 and 25, that would be two thirds and one third, not one
half and one quarter.

Is there a smallest unit of time that you use (i.e. if they're down for 10
minutes or 14 minutes, is it listed as 15)? Generally, break down what they
are expected to do per the smallest unit of time you use (if that's one
minute intervals, it would be 1.667 items per minute). Next, computer the
available minutes and compare the number of items completed with the number
of items expected. In one minute intervals, this would be 1.667 * number of
minutes available.

--
Wayne Morgan
MS Access MVP
"kevcar40" <ke******@btinternet.com> wrote in message
news:11********************@o13g2000cwo.googlegrou ps.com...
i am trying to calculate the efficieny of a work group

case 1
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have no downtime
this = 50% efficient

case 2
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have 30 minutes downtime
this = 100% efficient

case 3
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have 15 minutes downtime
this = 75% efficient

case 4
a group has 1 hour as available time
The group have a target of 100
They Achieve 25
and have 15 minutes downtime
this = 25% efficient
can anyone help with a formula

kevin

Feb 2 '06 #2
Efficiency = # Achieved/(MinutesDownTime/60)*100 x 100%
--
PC Datasheet
Your Resource For Help With Access, Excel And Word Applications
Over 1100 users have come to me from the newsgroups requesting help
re******@pcdatasheet.com


"kevcar40" <ke******@btinternet.com> wrote in message
news:11********************@o13g2000cwo.googlegrou ps.com...
i am trying to calculate the efficieny of a work group

case 1
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have no downtime
this = 50% efficient

case 2
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have 30 minutes downtime
this = 100% efficient

case 3
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have 15 minutes downtime
this = 75% efficient

case 4
a group has 1 hour as available time
The group have a target of 100
They Achieve 25
and have 15 minutes downtime
this = 25% efficient
can anyone help with a formula

kevin

Feb 2 '06 #3
Did you actually pass math class?

On your first example, Downtime is zero and your formula ends up dividing by
zero.

John...

"PC Datasheet" <no****@nospam.spam> wrote in message
news:E4*****************@newsread2.news.atl.earthl ink.net...
Efficiency = # Achieved/(MinutesDownTime/60)*100 x 100%
PC Datasheet

Feb 2 '06 #4
You need to clarify your definition of efficiency. I tend to agree with
Wayne's analysis.

John... Visio MVP

"kevcar40" <ke******@btinternet.com> wrote in message
news:11********************@o13g2000cwo.googlegrou ps.com...
i am trying to calculate the efficieny of a work group

case 1
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have no downtime
this = 50% efficient

case 2
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have 30 minutes downtime
this = 100% efficient

case 3
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have 15 minutes downtime
this = 75% efficient

case 4
a group has 1 hour as available time
The group have a target of 100
They Achieve 25
and have 15 minutes downtime
this = 25% efficient
can anyone help with a formula

kevin

Feb 2 '06 #5

"kevcar40" <ke******@btinternet.com> wrote in message
news:11********************@o13g2000cwo.googlegrou ps.com...
i am trying to calculate the efficieny of a work group

case 1
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have no downtime
this = 50% efficient

case 2
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have 30 minutes downtime
this = 100% efficient

case 3
a group has 1 hour as available time
The group have a target of 100
They Achieve 50
and have 15 minutes downtime
this = 75% efficient

case 4
a group has 1 hour as available time
The group have a target of 100
They Achieve 25
and have 15 minutes downtime
this = 25% efficient
can anyone help with a formula

kevin


Assuming target is never 0

efficient =
[Achieved]/iif([downtime]=0,[target],([target]-([target]*[downtime]/60)))
Feb 2 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Jack Higgs | last post by:
Has anyone got any ideas how I could go about producing a maths program for Primary School pupils? The coding isn't such a problem (ie random numbers etc), it's acctually figuring out how to...
12
by: David Sobey | last post by:
i'm looking to do some maths, such as parsing equations into polymorphic trees, matrices, etc. I've done it in C, a mess, but now i want to port it to something less low level (read: less messy)....
5
by: Scott Gunn | last post by:
Hello All, In VB.Net 2003 why is this the result to a simple maths calculation? 3.53 - 3.52 = 0.00999999046325684 Its not just this one either try this: 1.001 - 0.001 = 0.999999999999989
20
by: Daisy | last post by:
Something simple, I'm sure. My code: System.Windows.Forms.MessageBox.Show(((Int32)Math.Ceiling(1966 / 100)).ToString()); I'm expecting 20, but getting 19. What am I doing wrong? Thanks --
9
by: uttre | last post by:
hai to all, i did some programming in Lisp (6 months) & next i want to learn C++. i searched all the archives of "comp.lang.c++" & ACCU too & decided "C++ Primer" 3/e as my text book....
3
by: hars2010 | last post by:
hey i got this assignment in maths.i really need help guys.the question is below.The program should: It first clears the screen and then displays the next 3 lines. a1x + b1y + c1y =d1 a2x +...
1
by: jwatson | last post by:
Write a program to find the roots of quadratic equation. User will key the "a","b","c", for the equation ax*x+b*x+c = 0. formula given as x = (-b(+)(-) sqrt(b*b-4ac)/2a. Prog1: Only find the real...
2
by: Salochin | last post by:
Any Help appriciated Hi all below is what I need to work out basics: I want a form to work out Price per ream and show it in a text box as £££ the form will be manually updated with "Price per...
5
by: Ibys | last post by:
Hi, i am just starting to learn javascript, so i am probably doing something very simple wrong. i have read a lot of articles on maths in java, but cant find anything simple enough for my problem. I...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.