Time Schedule Hours Worked minus Lunch

RLPeloquin

Board Regular
Joined
Jul 4, 2020
Messages
73
Office Version
  1. 2019
Platform
  1. Windows
I can figure out how to subtract hours worked but my problem is subtracting lunch from hours worked. So... I'd like for this to happen.
Of course this formula obviously doesn't work
=if(A4="","",if(A5="","",if(A6>5:30 hours then minus 45:00 minutes from Total hours worked
A4 is Start Time
A5 is Stop Time
A6 is Total Hours Worked, - 45:00 if hours are over 5:30
Thanks in ADVANCE!
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
how about
=IF(OR(A4="",A5=""),"",IF((A5-A4)>5.5/24,(A5-A4)-TIMEVALUE("0:45:0"),A5-A4))

Book13
A
1
2
3
48:00
518:00
69:15
Sheet1
Cell Formulas
RangeFormula
A6A6=IF(OR(A4="",A5=""),"",IF((A5-A4)>5.5/24,(A5-A4)-TIMEVALUE("0:45:0"),A5-A4))
 
Upvote 0
Solution

Forum statistics

Threads
1,215,076
Messages
6,122,983
Members
449,092
Latest member
Mr Hughes

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