How do you handle Non Active entries from the past past?
Sample exemple.
EmployeeID: AutoNumber
EmployeeNr: Number
EmployeeName: Text
NotActive: Yes/No
I have a combo box in one form that utilize the above table to allow user to select only active employee.
my queries is select EmployeeID, EmployeeName from tblEmployee where NotActive = 0
the problem i face is if a user got terminated today, all entries in the past reference that employeeID will be blank. the value is still in the table but the combo box wont see it since NotActive = -1 for that EmployeeID.
How do i handle this case. Any suggestion is greatly appreciated.
Sample exemple.
EmployeeID: AutoNumber
EmployeeNr: Number
EmployeeName: Text
NotActive: Yes/No
I have a combo box in one form that utilize the above table to allow user to select only active employee.
my queries is select EmployeeID, EmployeeName from tblEmployee where NotActive = 0
the problem i face is if a user got terminated today, all entries in the past reference that employeeID will be blank. the value is still in the table but the combo box wont see it since NotActive = -1 for that EmployeeID.
How do i handle this case. Any suggestion is greatly appreciated.