I have to track when an employee initially recieved their badge, the day it expires, and the day they actually renewed it.
The first field is a date field called "Initial", it represents the date they were issued a badge. The second date field called "Recurrent" represents the date the employee actually came in and renewed their badge. I have an unbound field "Expire Date" (not sure if thats the best way to do it) that should display an annual date of 730 days (2 years) from the day they initially got their badge, or 365 days (1 year) from the day they renewed the badge.
Code would flow something like this in an If/then statement:
If Recurrent = Null the Expire = Initial + 730. If not Expire = Recurrent + 365.
I need help designing the right code. Both fields are within the same table.
The first field is a date field called "Initial", it represents the date they were issued a badge. The second date field called "Recurrent" represents the date the employee actually came in and renewed their badge. I have an unbound field "Expire Date" (not sure if thats the best way to do it) that should display an annual date of 730 days (2 years) from the day they initially got their badge, or 365 days (1 year) from the day they renewed the badge.
Code would flow something like this in an If/then statement:
If Recurrent = Null the Expire = Initial + 730. If not Expire = Recurrent + 365.
I need help designing the right code. Both fields are within the same table.