G
Guest
I am trying to update a listbox based on another listbox. The first listbox
is linked to a table called Region with one field (named Region).
The second listbox is linked to a query with the following code:
is linked to a table called Region with one field (named Region).
The second listbox is linked to a query with the following code:
Code:
"SELECT [IPB query].IPB_ID, [IPB query].NAME, [IPB query].STATE
FROM [IPB query] WHERE [IPB query].State = "IL" Or [IPB query].State = "MO"
Or [IPB query].State = "WI" Or [IPB query].State = "IN" ORDER BY [NAME],
[STATE], [IPB_ID];"
End Sub [code\]
I want to be able to click on a state in the first listbox and have the
second listbox list only choices related to the state chosen. Can anyone
help me with this problem? Thanks.