Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Time In-Time Out/No. of Units

I am doing a time study to see how many units my technicians process. Each
tech has to enter a time they enter the work station, what time they exit the
work station and how many units they process while they are in the station.
All times are entered into military time.
Example:
Cell C2: 13:04 (Time In)
Cell E2: 14:20 (Time Out)
Cell D2: 14 (No. of Units Processed)
I want to calculate the process time per unit.
I used =E2-C2/D2
and I'm getting 13:24

Does anyone know what is wrong?
The time it took was 1 hour and 16 minutes and they processed 14 units.
The answer should be around 5 minutes.
What am I doing wrong?
HELP!
Thanks, Karen

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 136
Default Time In-Time Out/No. of Units

Try

=(E2-C2)/D2


division has higher priority than subtraction so you need to enclose the
subtraction in parenthesis or else you will divide C2 by D2 then do the
subtraction

--


Regards,


Peo Sjoblom


"Karen" wrote in message
...
I am doing a time study to see how many units my technicians process. Each
tech has to enter a time they enter the work station, what time they exit
the
work station and how many units they process while they are in the
station.
All times are entered into military time.
Example:
Cell C2: 13:04 (Time In)
Cell E2: 14:20 (Time Out)
Cell D2: 14 (No. of Units Processed)
I want to calculate the process time per unit.
I used =E2-C2/D2
and I'm getting 13:24

Does anyone know what is wrong?
The time it took was 1 hour and 16 minutes and they processed 14 units.
The answer should be around 5 minutes.
What am I doing wrong?
HELP!
Thanks, Karen



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Time In-Time Out/No. of Units

Thank you so much for your help.
Have a great weekend
Karen

"Peo Sjoblom" wrote:

Try

=(E2-C2)/D2


division has higher priority than subtraction so you need to enclose the
subtraction in parenthesis or else you will divide C2 by D2 then do the
subtraction

--


Regards,


Peo Sjoblom


"Karen" wrote in message
...
I am doing a time study to see how many units my technicians process. Each
tech has to enter a time they enter the work station, what time they exit
the
work station and how many units they process while they are in the
station.
All times are entered into military time.
Example:
Cell C2: 13:04 (Time In)
Cell E2: 14:20 (Time Out)
Cell D2: 14 (No. of Units Processed)
I want to calculate the process time per unit.
I used =E2-C2/D2
and I'm getting 13:24

Does anyone know what is wrong?
The time it took was 1 hour and 16 minutes and they processed 14 units.
The answer should be around 5 minutes.
What am I doing wrong?
HELP!
Thanks, Karen



.

  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,389
Default Time In-Time Out/No. of Units

You need parentheses around your calculation, as in:

=(e2-c2)/d2

Regards,
Fred.

"Karen" wrote in message
...
I am doing a time study to see how many units my technicians process. Each
tech has to enter a time they enter the work station, what time they exit
the
work station and how many units they process while they are in the
station.
All times are entered into military time.
Example:
Cell C2: 13:04 (Time In)
Cell E2: 14:20 (Time Out)
Cell D2: 14 (No. of Units Processed)
I want to calculate the process time per unit.
I used =E2-C2/D2
and I'm getting 13:24

Does anyone know what is wrong?
The time it took was 1 hour and 16 minutes and they processed 14 units.
The answer should be around 5 minutes.
What am I doing wrong?
HELP!
Thanks, Karen


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Time In-Time Out/No. of Units

Thank you for your help.
What if I have a time like so:
Time In: 22:20
Time Out: 00:35
Units Processed: 36
It's not calculating.
HELP!
Thanks, Karen

"Fred Smith" wrote:

You need parentheses around your calculation, as in:

=(e2-c2)/d2

Regards,
Fred.

"Karen" wrote in message
...
I am doing a time study to see how many units my technicians process. Each
tech has to enter a time they enter the work station, what time they exit
the
work station and how many units they process while they are in the
station.
All times are entered into military time.
Example:
Cell C2: 13:04 (Time In)
Cell E2: 14:20 (Time Out)
Cell D2: 14 (No. of Units Processed)
I want to calculate the process time per unit.
I used =E2-C2/D2
and I'm getting 13:24

Does anyone know what is wrong?
The time it took was 1 hour and 16 minutes and they processed 14 units.
The answer should be around 5 minutes.
What am I doing wrong?
HELP!
Thanks, Karen


.



  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Time In-Time Out/No. of Units

If time out is less than time in, you need to replace (e2-c2) by
mod(e2-c2,1)
--
David Biddulph

"Karen" wrote in message
...
Thank you for your help.
What if I have a time like so:
Time In: 22:20
Time Out: 00:35
Units Processed: 36
It's not calculating.
HELP!
Thanks, Karen

"Fred Smith" wrote:

You need parentheses around your calculation, as in:

=(e2-c2)/d2

Regards,
Fred.

"Karen" wrote in message
...
I am doing a time study to see how many units my technicians process.
Each
tech has to enter a time they enter the work station, what time they
exit
the
work station and how many units they process while they are in the
station.
All times are entered into military time.
Example:
Cell C2: 13:04 (Time In)
Cell E2: 14:20 (Time Out)
Cell D2: 14 (No. of Units Processed)
I want to calculate the process time per unit.
I used =E2-C2/D2
and I'm getting 13:24

Does anyone know what is wrong?
The time it took was 1 hour and 16 minutes and they processed 14 units.
The answer should be around 5 minutes.
What am I doing wrong?
HELP!
Thanks, Karen


.



  #7   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Time In-Time Out/No. of Units

Thank you
I used =MOD(E2-C2,1)/D12

My raw data is:
Time In: 22:20
Time Out: 00:35
Units Processed: 36

My answer is 00:02
Shouldn't it be over 3 minutes?
That's 2 hours and 15 minutes (135 minutes)
135/36 = 3.75

Did I something wrong?
Thanks, Karen




"David Biddulph" wrote:

If time out is less than time in, you need to replace (e2-c2) by
mod(e2-c2,1)
--
David Biddulph

"Karen" wrote in message
...
Thank you for your help.
What if I have a time like so:
Time In: 22:20
Time Out: 00:35
Units Processed: 36
It's not calculating.
HELP!
Thanks, Karen

"Fred Smith" wrote:

You need parentheses around your calculation, as in:

=(e2-c2)/d2

Regards,
Fred.

"Karen" wrote in message
...
I am doing a time study to see how many units my technicians process.
Each
tech has to enter a time they enter the work station, what time they
exit
the
work station and how many units they process while they are in the
station.
All times are entered into military time.
Example:
Cell C2: 13:04 (Time In)
Cell E2: 14:20 (Time Out)
Cell D2: 14 (No. of Units Processed)
I want to calculate the process time per unit.
I used =E2-C2/D2
and I'm getting 13:24

Does anyone know what is wrong?
The time it took was 1 hour and 16 minutes and they processed 14 units.
The answer should be around 5 minutes.
What am I doing wrong?
HELP!
Thanks, Karen


.



.

  #8   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 136
Default Time In-Time Out/No. of Units

When I do that using your data I get 00:03:45 which is the same as 3.75
decimal minutes, somewhere your raw data is incorrect. Do you have 36 in
D12? You would have to divide by 67 units to get that result. The formula
definitely works

--


Regards,


Peo Sjoblom


"Karen" wrote in message
...
Thank you
I used =MOD(E2-C2,1)/D12

My raw data is:
Time In: 22:20
Time Out: 00:35
Units Processed: 36

My answer is 00:02
Shouldn't it be over 3 minutes?
That's 2 hours and 15 minutes (135 minutes)
135/36 = 3.75

Did I something wrong?
Thanks, Karen




"David Biddulph" wrote:

If time out is less than time in, you need to replace (e2-c2) by
mod(e2-c2,1)
--
David Biddulph

"Karen" wrote in message
...
Thank you for your help.
What if I have a time like so:
Time In: 22:20
Time Out: 00:35
Units Processed: 36
It's not calculating.
HELP!
Thanks, Karen

"Fred Smith" wrote:

You need parentheses around your calculation, as in:

=(e2-c2)/d2

Regards,
Fred.

"Karen" wrote in message
...
I am doing a time study to see how many units my technicians process.
Each
tech has to enter a time they enter the work station, what time they
exit
the
work station and how many units they process while they are in the
station.
All times are entered into military time.
Example:
Cell C2: 13:04 (Time In)
Cell E2: 14:20 (Time Out)
Cell D2: 14 (No. of Units Processed)
I want to calculate the process time per unit.
I used =E2-C2/D2
and I'm getting 13:24

Does anyone know what is wrong?
The time it took was 1 hour and 16 minutes and they processed 14
units.
The answer should be around 5 minutes.
What am I doing wrong?
HELP!
Thanks, Karen


.



.



  #9   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Time In-Time Out/No. of Units

Yes, you did do something wrong. The answer from that formula is 0:03:45,
which agrees with your calculation.

I wonder whether instead of formatting the result as time you formatted it
as number or general, and whether you misread 0.0026 as 00:02?

As has been said in another branch of this thread, if you want the answer in
decimal minutes, multiply by 24*60, and that gives 3.75.
--
David Biddulph

"Karen" wrote in message
...
Thank you
I used =MOD(E2-C2,1)/D12

My raw data is:
Time In: 22:20
Time Out: 00:35
Units Processed: 36

My answer is 00:02
Shouldn't it be over 3 minutes?
That's 2 hours and 15 minutes (135 minutes)
135/36 = 3.75

Did I something wrong?
Thanks, Karen




"David Biddulph" wrote:

If time out is less than time in, you need to replace (e2-c2) by
mod(e2-c2,1)
--
David Biddulph

"Karen" wrote in message
...
Thank you for your help.
What if I have a time like so:
Time In: 22:20
Time Out: 00:35
Units Processed: 36
It's not calculating.
HELP!
Thanks, Karen

"Fred Smith" wrote:

You need parentheses around your calculation, as in:

=(e2-c2)/d2

Regards,
Fred.

"Karen" wrote in message
...
I am doing a time study to see how many units my technicians process.
Each
tech has to enter a time they enter the work station, what time they
exit
the
work station and how many units they process while they are in the
station.
All times are entered into military time.
Example:
Cell C2: 13:04 (Time In)
Cell E2: 14:20 (Time Out)
Cell D2: 14 (No. of Units Processed)
I want to calculate the process time per unit.
I used =E2-C2/D2
and I'm getting 13:24

Does anyone know what is wrong?
The time it took was 1 hour and 16 minutes and they processed 14
units.
The answer should be around 5 minutes.
What am I doing wrong?
HELP!
Thanks, Karen


.



.



  #10   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1,766
Default Time In-Time Out/No. of Units

Hi,

If you want the answer in decimal points, use =(E2-C2)*24*60/D2. The answer
will be 5.428

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Karen" wrote in message
...
I am doing a time study to see how many units my technicians process. Each
tech has to enter a time they enter the work station, what time they exit
the
work station and how many units they process while they are in the
station.
All times are entered into military time.
Example:
Cell C2: 13:04 (Time In)
Cell E2: 14:20 (Time Out)
Cell D2: 14 (No. of Units Processed)
I want to calculate the process time per unit.
I used =E2-C2/D2
and I'm getting 13:24

Does anyone know what is wrong?
The time it took was 1 hour and 16 minutes and they processed 14 units.
The answer should be around 5 minutes.
What am I doing wrong?
HELP!
Thanks, Karen



  #11   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Time In-Time Out/No. of Units

Thank you for your help.
My answer is 10:17.
I'm not sure what I did wrong.I copied the formula exactly.
Karen

"Ashish Mathur" wrote:

Hi,

If you want the answer in decimal points, use =(E2-C2)*24*60/D2. The answer
will be 5.428

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Karen" wrote in message
...
I am doing a time study to see how many units my technicians process. Each
tech has to enter a time they enter the work station, what time they exit
the
work station and how many units they process while they are in the
station.
All times are entered into military time.
Example:
Cell C2: 13:04 (Time In)
Cell E2: 14:20 (Time Out)
Cell D2: 14 (No. of Units Processed)
I want to calculate the process time per unit.
I used =E2-C2/D2
and I'm getting 13:24

Does anyone know what is wrong?
The time it took was 1 hour and 16 minutes and they processed 14 units.
The answer should be around 5 minutes.
What am I doing wrong?
HELP!
Thanks, Karen

  #12   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2
Default Time In-Time Out/No. of Units

Change the hh:mm format to [hh]:mm and use 24:00 for midnight and
25:00 for 1am and so on.

  #13   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 447
Default Time In-Time Out/No. of Units

Thank you for your suggestion. Although, my boss wants it in military time.
Therefore, I cannot use 25:00. Any other suggestions?
Thanks, Karen

"bnbspop" wrote:

Change the hh:mm format to [hh]:mm and use 24:00 for midnight and
25:00 for 1am and so on.

.

  #14   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,651
Default Time In-Time Out/No. of Units

If you want the answer in decimal minutes (as 5.428), *don't* format it as
hours and minutes.
If you want to see it as hours and minutes, don't multiply by 24*60 (because
that was the conversion from Excel time to decimal minutes).
--
David Biddulph

"Karen" wrote in message
...
Thank you for your help.
My answer is 10:17.
I'm not sure what I did wrong.I copied the formula exactly.
Karen

"Ashish Mathur" wrote:

Hi,

If you want the answer in decimal points, use =(E2-C2)*24*60/D2. The
answer
will be 5.428

--
Regards,

Ashish Mathur
Microsoft Excel MVP
www.ashishmathur.com

"Karen" wrote in message
...
I am doing a time study to see how many units my technicians process.
Each
tech has to enter a time they enter the work station, what time they
exit
the
work station and how many units they process while they are in the
station.
All times are entered into military time.
Example:
Cell C2: 13:04 (Time In)
Cell E2: 14:20 (Time Out)
Cell D2: 14 (No. of Units Processed)
I want to calculate the process time per unit.
I used =E2-C2/D2
and I'm getting 13:24

Does anyone know what is wrong?
The time it took was 1 hour and 16 minutes and they processed 14 units.
The answer should be around 5 minutes.
What am I doing wrong?
HELP!
Thanks, Karen



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
converting Time to units hellZg8 Excel Worksheet Functions 8 December 28th 09 07:13 PM
Units Produced / (finish time minus start time)=Units Per Hr Gary A Excel Worksheet Functions 1 February 10th 09 01:35 AM
Adding small units of time and entering them quickly ckdkvk Excel Discussion (Misc queries) 1 January 4th 06 08:15 AM
Using time formats in minute units josh Excel Discussion (Misc queries) 4 September 11th 05 10:19 PM
How do I convert a time units jeff excel Excel Discussion (Misc queries) 3 February 8th 05 08:36 PM


All times are GMT +1. The time now is 09:31 PM.

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

About Us

"It's about Microsoft Excel"