I'm using a form to input new employees into the database. On the form are fields for hire date and specific benefit eligibility dates. The eligibility dates feed directly off the hire date. (i.e. 30 days after hire date...) To prevent the need to add these dates to all these fields (there are 4) for every employee, I want to set the default value of these fields to be
or whatever number of days the specific benefit requires.
My problem is this: I can't get all the fields to update correctly, but I can get one to work at a time. It appears that Access doesn't want me to be able to do this on multiple fields at the same time. Does anyone know how to get around this?
Code:
=DateAdd("d",30,[CurrentHireDate])
My problem is this: I can't get all the fields to update correctly, but I can get one to work at a time. It appears that Access doesn't want me to be able to do this on multiple fields at the same time. Does anyone know how to get around this?