Break Entitlement

HappyChappy

Active Member
Joined
Jan 26, 2013
Messages
378
Office Version
  1. 2019
  2. 2010
  3. 2007
Platform
  1. Windows
Hope you can help

Have a time sheet cell 05 =11:15 o5 looks up cells g3+m3 which have two times in them respectively.
Cell p5 needs to look at 05 and if it is >8.75 deduct .75 from cell but if it's < 8.75 just return it's value
 
Last edited:

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
How about
Excel Formula:
=O5-0.75*(O5>8.75)
or
Excel Formula:
=IF(O5>8.75,O5-0.75,O5)
 
Upvote 0
How about
Excel Formula:
=O5-0.75*(O5>8.75)
or
Excel Formula:
=IF(O5>8.75,O5-0.75,O5)
Tried both formula's both return same time of 11:15 checked formatting and that doesn't make any difference result should be 10:30
 
Upvote 0
Ok, how about
Excel Formula:
=IF(O5>TIME(8,45,),O5-TIME(0,45,0),O5)
 
Upvote 0
Ok, how about
Excel Formula:
=IF(O5>TIME(8,45,),O5-TIME(0,45,0),O5)
exel corrected formula to =IF(O5>TIME(8,45,),O5-TIME(0,45,0)) which works but if 05 is populated by 0:00 then it returns a FALSE can i get rid of the FALSE
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,216,045
Messages
6,128,484
Members
449,455
Latest member
jesski

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