I need some help finding/creating a Calc/Excel formula that will help me track my breaks at work, depending on how long I work per day.
I work shift of varying different lengths. One day I might work 3 hours, 7 the next and 4h30m the following day. I get a break time dependent on how long I've worked, which means I'm not paid for that period of time.
For example, if I work 3 hours, I get paid for 3 full hours. If I work 7 hours, I get a 45 minute unpaid break, which means I only get paid for 6h15m. If I work 4 hours, I get a 15 minute unpaid break, which means I get paid for 3h45m.
I want to be able to track in Openoffice Calc (by preference, though Excel will do) what hours I'm at work & what hours I get paid for, every week. I've uploaded a working copy of the spreadsheet
here.
What formula do I need to put into F2, F3, etc, to work out how many hours I've been paid, and then return that number as a percentage (so I can easily multiply that number by my hourly wage, and get an idea of how much I'll actually be paid)?
I hope this is clear. I don't use spreadsheets very often.
less than 4 = no break
4 up to 7 = 15 min break
7 or more = 45 min break
If this is correct, you need =IF(E2<4>7:00;E2-0:45;E2-0:15))
What this is saying is:
If E2 is less than 4, F2=E2
otherwise,
if E2 is greater than 4, F2=E2-45 min
otherwise
F2=E2-15 min4>
posted by chrisamiller at 12:55 PM on December 18, 2008