I have the current code for populating one combo box off another combo box:
My question is if Root_Cause has multiple Ids from table me!Combo110 can it work ?
Code:
Private Sub Combo110_AfterUpdate()
With Me![Combo112]
If IsNull(Me!Combo110) Then
.RowSource = ""
Else
.RowSource = "SELECT [Root_Cause] " & _
"FROM xRoot_Cause " & _
"WHERE [ID]=" & Me!Combo110
End If
Call .Requery
End With
End Sub
Comment