I have created a time sheet. This time sheet is based on a two week period (80 hours). I need to show overtime hours for the first week based on a forty hour week and overtime hours for the second week based on forty hours. I have a text box giving me hours over forty, but this box is also adding in the hours for the second week. How can I split up my overtime hours.
IIf([Emphrs] >40, [Emphrs]-40,0) this works for first week. How do I get hours for second week without including the first weeks hours?
IIf([Emphrs] >40, [Emphrs]-40,0) this works for first week. How do I get hours for second week without including the first weeks hours?