M
Mike
Hello.
I have a list box "lstMembers" Row Source:
SELECT DISTINCTROW [qryContacts].[CONTACTID],
[qryContacts].[LAST_NAME], [qryContacts].[FIRST_NAME],
[qryContacts].[State], [qryContacts].[TYPE] FROM
qryContacts ORDER BY [qryContacts].[LAST_NAME];
And it returns the following:
Last_Name First_Name State Type
------------------------------------
Doe John MD AA
Does Dan FL CC
Smith Mike CA AA
I have a Combo box that contains all the "TYPES". Its Row
Source is as follows:
SELECT [LIST_TYPES].[TYPE_ID], [LIST_TYPES].[TYPE] FROM
LIST_TYPES;
How can I filter this List Box using the criteria in the
Combo Box?
In other words, if I choose 'AA' from the combo box, only
the records for John Doe and Mike Smith show up.
Any help would be appreciated.
Thanks,
m.
I have a list box "lstMembers" Row Source:
SELECT DISTINCTROW [qryContacts].[CONTACTID],
[qryContacts].[LAST_NAME], [qryContacts].[FIRST_NAME],
[qryContacts].[State], [qryContacts].[TYPE] FROM
qryContacts ORDER BY [qryContacts].[LAST_NAME];
And it returns the following:
Last_Name First_Name State Type
------------------------------------
Doe John MD AA
Does Dan FL CC
Smith Mike CA AA
I have a Combo box that contains all the "TYPES". Its Row
Source is as follows:
SELECT [LIST_TYPES].[TYPE_ID], [LIST_TYPES].[TYPE] FROM
LIST_TYPES;
How can I filter this List Box using the criteria in the
Combo Box?
In other words, if I choose 'AA' from the combo box, only
the records for John Doe and Mike Smith show up.
Any help would be appreciated.
Thanks,
m.