Formula not working when calculating time

MrsAndyTaylor

New Member
Joined
Mar 5, 2019
Messages
4
Hello!

I have a worksheet that has a list of times people are picking up extra hours. They get an incentive (-.50) if they work any three hours on Sunday(-.50); they get another incentive if they work between 0900-1300 (-.50), and/or 1830-2300 (-.50). The formula I have only works if they pick up exactly 0900-1300, or 1830-2300. So, if someone works 0900-1200 (3 hours), or 1800-2200 (4 hours) the formula isn't giving them the (-.50).


[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD][/TD]
[TD="align: center"][/TD]
[TD="align: center"]D[/TD]
[TD="align: center"]E[/TD]
[TD="align: center"]F[/TD]
[TD="align: center"]H[/TD]
[TD="align: center"]I[/TD]
[TD="align: center"]J[/TD]
[/TR]
[TR]
[TD="align: center"]Name[/TD]
[TD="align: center"]Emp[/TD]
[TD="align: center"]EH From[/TD]
[TD="align: center"]EH To[/TD]
[TD="align: center"]Subtotal[/TD]
[TD="align: center"]3 HR Incentive[/TD]
[TD="align: center"]AM Incentive[/TD]
[TD="align: center"]PM Incentive[/TD]
[/TR]
[TR]
[TD]Last, First[/TD]
[TD="align: center"]XXXX[/TD]
[TD="align: center"]1830[/TD]
[TD="align: center"]2200[/TD]
[TD="align: center"]3:30[/TD]
[TD="align: center"]-0.50[/TD]
[TD="align: center"]0.00[/TD]
[TD="align: center"]0.00[/TD]
[/TR]
</tbody>[/TABLE]

Column H formula [=IF(($E2-$D2)>=0.125,-0.5,0)]
Column I formula [=IF($D2<=TIME(9,0,0),IF($E2>=TIME(13,0,0),-0.5,0),0)]
Column J Formula [=IF($D2<=TIME(9,0,0),IF($E2>=TIME(13,0,0),-0.5,0),0)]
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Hi Andy,

Assuming employees can get both AM and PM incentives, try this:

Column H:
Code:
=IF(F2-E2>=300,0.5,"")

Column I:
Code:
=IF(OR(901=MEDIAN(E2:F2,901),1299=MEDIAN(E2:F2,1299)),0.5,"")

Column J:
Code:
=IF(OR(1831=MEDIAN(E2:F2,1831),2299=MEDIAN(E2:F2,2299)),0.5,"")

Does this do the trick?


All the best,
Matt
 
Upvote 0
Your first sentence mentions sunday. There is no reference to date on your example.
 
Upvote 0
Maybe...

I2
=IF(MIN(TIME(13,0,0),E2)-MAX(TIME(9,0,0),D2)>=0.125,-0.5,0)

J2
=IF(MIN(TIME(22,0,0),E2)-MAX(TIME(18,30,0),D2)>=0.125,-0.5,0)

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,223,911
Messages
6,175,333
Members
452,636
Latest member
laura12345

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top