Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Do you mean you want the second combo box to only include elements restricted by column A?when the user selects the value in A I want combo B to jump to the nearest match from column 2 in
Dim strSQL as String, strQ as String
strQ = Chr(34)
If Len(nz(Me.cmbMenuCat1,"")) > 0 Then
strSQL = "Select MenuItem From tblMenuItem " _
& "Where MenuCat = " & strQ & Me.cmbMenuCat1 & strQ
Me.cmbMenuItem2.RecordSource = strSQL
Me.cmbMenuItem2.Requery
End if