A family of Microsoft relational database management systems designed for ease of use.
Ok. This is what I have:
| birthdate | duedate1 | enterdate | newduedate |
|---|---|---|---|
| 10/1/2008 | 10/1/2009 | 11/1/2010 | 11/1/2011 |
| 1/1/2008 | 1/1/2009 | 2/1/2010 | 2/1/2011 |
| 6/1/2008 | 6/1/2009 | 5/15/2010 | 5/15/2011 |
| 5/1/2008 | 5/1/2009 | 4/1/2010 | 4/1/2011 |
So first it starts off with the birthdate plus 1 year is the first due date. Then as the user enters a date into the enterdate field, it generates a new due date based off of that date within the newduedate field. As the years go on the user keeps entering in dates into the enterdate field and the code I previously posted filters this field to display only the most current enterdate per employee. I then need it to somehow check to see if it is late or early and by how many days. I know that I can't just use the newduedate field as it will return the next years date. Please advise me on how I can achieve the needed data. Users can only enter data into the bolded field as the duedates are calculated fields.
THANKS