Hello,
Given my tables screenshots below, I'd like to display two fields in my form where users select from 'active' users from drop down.
1. primary investigator
2. secondary investigator

Currently, the above is stored in a single field: users select from USERID and INVTYPE (primary or secondary). And following is the Row Source:
For historical cases, I still would like my form to display the 'inactive' users who investigated the case.
TIA
Regards,
Given my tables screenshots below, I'd like to display two fields in my form where users select from 'active' users from drop down.
1. primary investigator
2. secondary investigator

Currently, the above is stored in a single field: users select from USERID and INVTYPE (primary or secondary). And following is the Row Source:
Code:
SELECT tblLOGIN.USERID, tblLOGIN.INVNM FROM tblLOGIN WHERE (((tblLOGIN.STATUS)="A")) ORDER BY tblLOGIN.INVNM;
For historical cases, I still would like my form to display the 'inactive' users who investigated the case.
TIA
Regards,