bentheimmigrant
Lost & confused
- Local time
- Today, 20:34
- Joined
- Aug 21, 2015
- Messages
- 60
I have a ComboBox where user is selected. However, this is filtered down to only include active members of staff.
What I'm trying to do is set the Row Source for this ComboBox to display the staff name, even if they're not active.
So, I currently have:
SELECT ID, FullName FROM tblUsers WHERE tblUsers.Active = Yes;
But I'm not quite sure how to also display the inactive user who was already chosen (i.e. before they became inactive). Any suggestions?
The form is Bound to a table, tblDocs, which has the field UserID (which is obviously the Control Source for the ComboBox).
TIA.
What I'm trying to do is set the Row Source for this ComboBox to display the staff name, even if they're not active.
So, I currently have:
SELECT ID, FullName FROM tblUsers WHERE tblUsers.Active = Yes;
But I'm not quite sure how to also display the inactive user who was already chosen (i.e. before they became inactive). Any suggestions?
The form is Bound to a table, tblDocs, which has the field UserID (which is obviously the Control Source for the ComboBox).
TIA.