About a year ago, I threw together a janky system to keep track of employee attendance. The idea is that there are different point values assigned to each kind of attendance occurrence, which the points fall off after a year. However, we have added a twist that is throwing me for loop. We now have a policy where if they pick up overtime, they can get a certain amount of point reductions depending on the shift. So this has kind of ruined my set up as when the OT drops, it adds points back to their total, so I need to rewrite a cleaner formula set up.
So here is my sheet. I have over 100 employees, but I've filtered it down to 1 person to make it easier to look at.
So I think the Occurrence and Occurrence Point Value columns should be good, as it's just nested IF formulas. I think the issue is the Total Occurrence Values, as it shows the current value in each cell in it's column. I think if we can have it reference a previous total, so that way the OT value can just be subtracted from it. Here is my current formula for the Total Occurrence Value column.
=SUMIFS([Overtime]:[Overtime], [Communicator Name]:[Communicator Name], @cell = [Communicator Name]@row, [Occurrence Date]:[Occurrence Date], @cell >= TODAY(-365))))
How would you recommend I rewrite it?