L
lepricon
Still need some help with a combobox. I am trying to link 2 so that when you
select the info from one it limits the info in the other. I have gotten it
to do it, however it only does it it once. Meaning if you re-select
something in combo 1 it doesn't update in combo 2. Here is the code that I
am using. Anyone with specific help please let me know.
Private Sub Combo6_AfterUpdate()
Dim strSQL As String
strSQL = "Select " & Me!Combo4
strSQL = "charge code" strSQL & "Table1"
Me!Combo6.RowSourceType = "Table/Query"
Me!Combo6.RowSource = strSQL
End Sub
select the info from one it limits the info in the other. I have gotten it
to do it, however it only does it it once. Meaning if you re-select
something in combo 1 it doesn't update in combo 2. Here is the code that I
am using. Anyone with specific help please let me know.
Private Sub Combo6_AfterUpdate()
Dim strSQL As String
strSQL = "Select " & Me!Combo4
strSQL = "charge code" strSQL & "Table1"
Me!Combo6.RowSourceType = "Table/Query"
Me!Combo6.RowSource = strSQL
End Sub