Hi all,
I have a search form base on combo box, when click Search, it should give me all records which match "Type" in my table.
I'm not sure what to do. Thanks for any help
My frmAllResord based on a query
I have a search form base on combo box, when click Search, it should give me all records which match "Type" in my table.
I'm not sure what to do. Thanks for any help
Code:
Private Sub cmdSearch_Click()
If Me.cbType.Value = "(All)" Then
DoCmd.OpenForm "frmAllRecord"
Else
DoCmd.OpenForm "frmAllRecord", , , [Type] = " & me.cbType "
End Sub
Code:
SELECT tblAllReports.*
FROM tblAllReports
WHERE (((tblAllReports.Type)=([Form]![frmSearch]![cbType])));