B
Bob Vance
I am using a combo box to filter my records in a List Box
*2 problems the combo box is showing say "Transport" 6 times if I have
transport in that field 6 times (No Duplicates Please)
*When I select Transport it only shows 1 field, I am trying to get the list
box to show all 6 fields (Show Duplicates)
Combobox=
Private Sub cmbFindSubject_AfterUpdate()
Me!lstModify.RowSource = "SELECT * FROM qryClientInvoice Where [InvoiceID]
Like " & Me.cmbFindSubject
End Sub
Query=
SELECT tblInvoice.InvoiceID, tblInvoice.ClientDetail
FROM tblInvoice
WHERE (((tblInvoice.ClientDetail) Is Not Null));
*2 problems the combo box is showing say "Transport" 6 times if I have
transport in that field 6 times (No Duplicates Please)
*When I select Transport it only shows 1 field, I am trying to get the list
box to show all 6 fields (Show Duplicates)
Combobox=
Private Sub cmbFindSubject_AfterUpdate()
Me!lstModify.RowSource = "SELECT * FROM qryClientInvoice Where [InvoiceID]
Like " & Me.cmbFindSubject
End Sub
Query=
SELECT tblInvoice.InvoiceID, tblInvoice.ClientDetail
FROM tblInvoice
WHERE (((tblInvoice.ClientDetail) Is Not Null));