Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Dean
 
Posts: n/a
Default Time for some help (Please!)

It's the old time problem.
I want to calculate a persons pick rate. We have
Start time, End time and qty picked
Times are in dd/mm/yyyy hh:mm:ss format
So far I have
A2=17/05/2005 06:00:00 'Start time
B2= 17/05/2005 07:00:00 'End time
C2=B2-A2 'Length of time formatted as dd/hh:mm:ss
D2=B2+1*(B2<A2)-A2 'Length of time formatted as number to 5 decimal places
D3= 'Qty picked
D4=D2*D3*24

A length of time of 0:45 with a pick qty of 90 gives a pick rate of 170
units per hour
but if you change the time to read 00:00:30 and a picked qty of 72 the rate
should be 8640 units per hour but it does not come to that, where am I going
wrong.

  #2   Report Post  
Alok
 
Posts: n/a
Default

Not clear why you have the formula that you do in D2. What happens when End
time is less than the start time?
Also the rate is usually the number divided by the time. Hence the pick rate
should probably involve dividing D3 with D2?

Alok Joshi

"Dean" wrote:

It's the old time problem.
I want to calculate a persons pick rate. We have
Start time, End time and qty picked
Times are in dd/mm/yyyy hh:mm:ss format
So far I have
A2=17/05/2005 06:00:00 'Start time
B2= 17/05/2005 07:00:00 'End time
C2=B2-A2 'Length of time formatted as dd/hh:mm:ss
D2=B2+1*(B2<A2)-A2 'Length of time formatted as number to 5 decimal places
D3= 'Qty picked
D4=D2*D3*24

A length of time of 0:45 with a pick qty of 90 gives a pick rate of 170
units per hour
but if you change the time to read 00:00:30 and a picked qty of 72 the rate
should be 8640 units per hour but it does not come to that, where am I going
wrong.

  #3   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

Are you saying that pick qty of 72 for 30 minutes should be 8640 per hour?
One hour is 60 minutes so the pick raten per hour should be 144 or did you
just explain it incorrectly? To get the qty per hour divide instead use
=D3/(D2*24) which of course gives 120 qty per hour if pick rate is 90 for 45
minutes, format as general


Regards,

Peo Sjoblom



"Dean" wrote:

It's the old time problem.
I want to calculate a persons pick rate. We have
Start time, End time and qty picked
Times are in dd/mm/yyyy hh:mm:ss format
So far I have
A2=17/05/2005 06:00:00 'Start time
B2= 17/05/2005 07:00:00 'End time
C2=B2-A2 'Length of time formatted as dd/hh:mm:ss
D2=B2+1*(B2<A2)-A2 'Length of time formatted as number to 5 decimal places
D3= 'Qty picked
D4=D2*D3*24

A length of time of 0:45 with a pick qty of 90 gives a pick rate of 170
units per hour
but if you change the time to read 00:00:30 and a picked qty of 72 the rate
should be 8640 units per hour but it does not come to that, where am I going
wrong.

  #4   Report Post  
SongBear
 
Posts: n/a
Default

I tried a couple of things out...
the formula needs to find out how much of a day, in decimal, an hour is, so
you divide 1 by 24 for one of your formula components.
Also, as has already been mentioned, that formula doesn't do anything, just
format the resultant measured time as a number with 5 decimal places.
And I get 90 in 45 minutes as 120 per hour...
Converted to a vertical layout:

start 18/05/2005 6:00:00

end 18/05/2005 6:00:30

time measured 00/00:00:30

measured as your formula?? 0.00035
meas. number formated only (m.a.d.) 0.00035

hours as decimal (h.a.d.) =1/24 0.041666667

multiply factor (Mf) = h.a.d. / m.a.d. 119.9999996

picked during measured time (Pkd) 72

Pick Rate Per Hour ( Pkd * Mf ) 8639.999972

More results:

start 18/05/2005 6:00:00
end 18/05/2005 7:00:30
time measured 00/01:00:30
measured as formula?? 0.04201
meas. numb formated only (m.a.d.) 0.04201
hours as decimal (h.a.d.) =1/24 0.041666667
multiply factor (Mf) = h.a.d. / m.a.d. 0.991735537
picked during measured time (Pkd) 72
Pick Rate Per Hour ( Pkd * Mf ) 71.40495868


start 17/05/2005 6:00:00
end 18/05/2005 7:00:30
time measured 01/01:00:30
measured as formula?? 1.04201
meas. numb formated only (m.a.d.) 1.04201
hours as decimal (h.a.d.) =1/24 0.041666667
multiply factor (Mf) = h.a.d. / m.a.d. 0.039986671
picked during measured time (Pkd) 72
Pick Rate Per Hour ( Pkd * Mf ) 2.87904032

start 18/05/2005 6:00:00
end 18/05/2005 6:45:00
time measured 00/00:45:00
measured as formula?? 0.03125
meas. numb formated only (m.a.d.) 0.03125
hours as decimal (h.a.d.) =1/24 0.041666667
multiply factor (Mf) = h.a.d. / m.a.d. 1.333333333
picked during measured time (Pkd) 90
Pick Rate Per Hour ( Pkd * Mf ) 120

Hope we have helped
SongBear




"Dean" wrote:

It's the old time problem.
I want to calculate a persons pick rate. We have
Start time, End time and qty picked
Times are in dd/mm/yyyy hh:mm:ss format
So far I have
A2=17/05/2005 06:00:00 'Start time
B2= 17/05/2005 07:00:00 'End time
C2=B2-A2 'Length of time formatted as dd/hh:mm:ss
D2=B2+1*(B2<A2)-A2 'Length of time formatted as number to 5 decimal places
D3= 'Qty picked
D4=D2*D3*24

A length of time of 0:45 with a pick qty of 90 gives a pick rate of 170
units per hour
but if you change the time to read 00:00:30 and a picked qty of 72 the rate
should be 8640 units per hour but it does not come to that, where am I going
wrong.

  #5   Report Post  
Dean
 
Posts: n/a
Default

No.
A pick qty of 72 in 30 seconds should give a pick rate of 8640 units per hour.


"Peo Sjoblom" wrote:

Are you saying that pick qty of 72 for 30 minutes should be 8640 per hour?
One hour is 60 minutes so the pick raten per hour should be 144 or did you
just explain it incorrectly? To get the qty per hour divide instead use
=D3/(D2*24) which of course gives 120 qty per hour if pick rate is 90 for 45
minutes, format as general


Regards,

Peo Sjoblom



"Dean" wrote:

It's the old time problem.
I want to calculate a persons pick rate. We have
Start time, End time and qty picked
Times are in dd/mm/yyyy hh:mm:ss format
So far I have
A2=17/05/2005 06:00:00 'Start time
B2= 17/05/2005 07:00:00 'End time
C2=B2-A2 'Length of time formatted as dd/hh:mm:ss
D2=B2+1*(B2<A2)-A2 'Length of time formatted as number to 5 decimal places
D3= 'Qty picked
D4=D2*D3*24

A length of time of 0:45 with a pick qty of 90 gives a pick rate of 170
units per hour
but if you change the time to read 00:00:30 and a picked qty of 72 the rate
should be 8640 units per hour but it does not come to that, where am I going
wrong.



  #6   Report Post  
Mangesh
 
Posts: n/a
Default

The only mistake you are making is in the formula:
=D2*D3*24

Change it to:
=D3/(D2*24)


- Mangesh




"Dean" wrote in message
...
No.
A pick qty of 72 in 30 seconds should give a pick rate of 8640 units per

hour.


"Peo Sjoblom" wrote:

Are you saying that pick qty of 72 for 30 minutes should be 8640 per

hour?
One hour is 60 minutes so the pick raten per hour should be 144 or did

you
just explain it incorrectly? To get the qty per hour divide instead use
=D3/(D2*24) which of course gives 120 qty per hour if pick rate is 90

for 45
minutes, format as general


Regards,

Peo Sjoblom



"Dean" wrote:

It's the old time problem.
I want to calculate a persons pick rate. We have
Start time, End time and qty picked
Times are in dd/mm/yyyy hh:mm:ss format
So far I have
A2=17/05/2005 06:00:00 'Start time
B2= 17/05/2005 07:00:00 'End time
C2=B2-A2 'Length of time formatted as dd/hh:mm:ss
D2=B2+1*(B2<A2)-A2 'Length of time formatted as number to 5 decimal

places
D3= 'Qty picked
D4=D2*D3*24

A length of time of 0:45 with a pick qty of 90 gives a pick rate of

170
units per hour
but if you change the time to read 00:00:30 and a picked qty of 72 the

rate
should be 8640 units per hour but it does not come to that, where am I

going
wrong.



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
time differences in a column 68magnolia71 Excel Worksheet Functions 3 May 9th 05 09:46 PM
Time Sheet Calculation Help Needed! sax30 Excel Worksheet Functions 2 April 26th 05 08:08 PM
Time Sheets Lady Layla Excel Discussion (Misc queries) 1 March 23rd 05 03:22 PM
unmet challenge boris Excel Worksheet Functions 2 March 16th 05 02:13 PM
time formatting and time categorizing (vlookup or data validation) MarianneR Excel Worksheet Functions 4 November 18th 04 03:24 PM


All times are GMT +1. The time now is 03:21 PM.

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"