Hello,
I have a combobox that contains options for "Faculty", "Students", "Staff", "Other", and "(All)" via a rowsource query that looks like this:
SELECT "*" As userTypeKey, "(All)" As userType FROM userType
UNION
SELECT [userType].[userTypeKey], [userType].[userType] FROM userType...