I'm trying to streamline my hourly invoice for some of my clients and struggling with the overtime calculation, starting to wonder if this is a pipe dream.
The clients don't care about time in/out, just the hours worked for the day so here's how I have my invoice sheet set up:
| Date (B15) | Project (C15) | Hours (E15) | Rate (F15) | Total Pay (G15) |
|---|
Here's what I want the function to do:
Check E15 to see if there are more than 8 hours shown
if no, multiply Hours by Rate and spit out the pay in Total Pay
if yes, multiply Hours by Rate for the first 8, then multiply remaining Hours by (1.5 x Rate), then add those together and pop the Total Pay
The more I think about this, the more it feels like a pipe dream.Is there a simple solution to this complicated wish list?