Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Change the hh:mm format to [hh]:mm and use 24:00 for midnight and
25:00 for 1am and so on. |
#13
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
converting Time to units | Excel Worksheet Functions | |||
Units Produced / (finish time minus start time)=Units Per Hr | Excel Worksheet Functions | |||
Adding small units of time and entering them quickly | Excel Discussion (Misc queries) | |||
Using time formats in minute units | Excel Discussion (Misc queries) | |||
How do I convert a time units | Excel Discussion (Misc queries) |