K
Karen
I have a form that is based on a query. On that form is a combo box field
called "Entered By" with a sql statement for the rowsource. For data entry
purposes, I want to exlude those users who are no longer with the department.
However, when the form is in edit or view, I want the name of the user to
appear. When I include the Expire field in the sql where clause and I view
previous entries for expired users, I can not see their name on the form.
The sql statement is:
SELECT tblUsers.UserID, tblUsers!FirstName & " " & tblUsers!LastName AS
FullName
FROM tblUsers
WHERE (((tblUsers.Expire)=No))
ORDER BY tblUsers.LastName;
Any help will be greatly appreciated
called "Entered By" with a sql statement for the rowsource. For data entry
purposes, I want to exlude those users who are no longer with the department.
However, when the form is in edit or view, I want the name of the user to
appear. When I include the Expire field in the sql where clause and I view
previous entries for expired users, I can not see their name on the form.
The sql statement is:
SELECT tblUsers.UserID, tblUsers!FirstName & " " & tblUsers!LastName AS
FullName
FROM tblUsers
WHERE (((tblUsers.Expire)=No))
ORDER BY tblUsers.LastName;
Any help will be greatly appreciated