Set Combo Box source based on the value of another Combo Box

bconner

Registered User.
Local time
Today, 10:16
Joined
Dec 22, 2008
Messages
183
I want to set the RowSource of a ComboBox based on what the value is in another ComboBox. Example:
Code:
Select Case ComboBox1
 
   Case "CodingList"
      ComboBox2.RowSource = QryCodingList
   Case "DataEntryList"
      ComboBox2.RowSource = QryDataEntryList
   Case "UserList"
      ComboBox2.RowSource = QryUserList
 
end Select
 
Basically I want the Lists available in ComboBox2 to change based on the Value in ComboBox1
 
You haven't said what the problem is, but try

ComboBox2.RowSource = "QryCodingList"
 

Users who are viewing this thread

Back
Top Bottom