In your earlier attachment showing the form the status control was a combo box, but I do not see any joins to the EmployeeStatus field in tblEmp. Do you have the EmployeeStatus field as a lookup field in your table? Even though Access has the capability of having table-level lookup fields, using them is generally not recommended. This
site explains the issues that the table-level lookups can cause. What I would recommend is to create a new table like this
tblEmploymentStatus
-pkEmpStatusID primary key, autonumber
-txtEmpStatus
Then join the above to tblEmp
tblEmp
-EmployeeID primary key, autonumber
-EmployeeName
-fkEmpStatusID foreign key to tblEmploymentStatus (must be a long integer number datatype field)
-Notes
Then on your employee form remove the current combo box for the status and rebuild a new combo box based on the tblEmploymentStatus.
The code I assume will go in the After Update event of the status combo box.
Could you please explain exactly what you want to have happen? I assume that there are multiple status types to choose from, do you want different things to happen with each one?
Could you please explain what type of data is in the employee info table and why it is on the many side of a one-to-many relationship? I just want to make sure I understand its purpose & why you only want it to be shown at certain times.