ThatDudeRyan
New Member
- Joined
- Apr 12, 2019
- Messages
- 4
I have a sheet that I am working on for doing an hours breakdown. I have 2 columns, one that deals with regular hours and one with overtime. I have an hours box and then the formula in the columns designates the number of regular hours (no more than 8) and then put the rest into the overtime. I have the overtime figured out but I am not able to get the right number of hours to display for the regular. I have the formula:
With this formula though if I put in 10 hours it will show 2 overtime hours and 0 regular hours (since it is above 8).
Thanks for any help.
Ryan
Code:
IF(AND(B3>0,B3<=8),B3*L11,0)
With this formula though if I put in 10 hours it will show 2 overtime hours and 0 regular hours (since it is above 8).
Thanks for any help.
Ryan